aboutsummaryrefslogtreecommitdiff
path: root/internal/lsp
diff options
context:
space:
mode:
Diffstat (limited to 'internal/lsp')
-rw-r--r--internal/lsp/cache/check.go16
-rw-r--r--internal/lsp/cache/parse.go2
-rw-r--r--internal/lsp/debug/trace.go39
3 files changed, 25 insertions, 32 deletions
diff --git a/internal/lsp/cache/check.go b/internal/lsp/cache/check.go
index 51d7d1a7e..f09fc298a 100644
--- a/internal/lsp/cache/check.go
+++ b/internal/lsp/cache/check.go
@@ -97,6 +97,14 @@ func (s *snapshot) buildPackageHandle(ctx context.Context, id PackageID, mode so
return nil, err
}
+ // Do not close over the packageHandle or the snapshot in the Bind function.
+ // This creates a cycle, which causes the finalizers to never run on the handles.
+ // The possible cycles are:
+ //
+ // packageHandle.h.function -> packageHandle
+ // packageHandle.h.function -> snapshot -> packageHandle
+ //
+
m := ph.m
key := ph.key
@@ -113,13 +121,6 @@ func (s *snapshot) buildPackageHandle(ctx context.Context, id PackageID, mode so
}(dep)
}
- // TODO(adonovan): opt: consider moving the Wait here,
- // so that dependencies complete before we start to
- // read+parse+typecheck this package. Although the
- // read+parse can proceed, typechecking will block
- // almost immediately until the imports are done.
- // The effect is to increase contention.
-
data := &packageData{}
data.pkg, data.err = typeCheck(ctx, snapshot, m.Metadata, mode, deps)
// Make sure that the workers above have finished before we return,
@@ -447,7 +448,6 @@ func doTypeCheck(ctx context.Context, snapshot *snapshot, m *Metadata, mode sour
}
typeparams.InitInstanceInfo(pkg.typesInfo)
- // TODO(adonovan): opt: execute this loop in parallel.
for _, gf := range pkg.m.GoFiles {
// In the presence of line directives, we may need to report errors in
// non-compiled Go files, so we need to register them on the package.
diff --git a/internal/lsp/cache/parse.go b/internal/lsp/cache/parse.go
index ab55743cc..668c437f5 100644
--- a/internal/lsp/cache/parse.go
+++ b/internal/lsp/cache/parse.go
@@ -278,7 +278,7 @@ func parseGo(ctx context.Context, fset *token.FileSet, fh source.FileHandle, mod
tok := fset.File(file.Pos())
if tok == nil {
- // file.Pos is the location of the package declaration (issue #53202). If there was
+ // file.Pos is the location of the package declaration. If there was
// none, we can't find the token.File that ParseFile created, and we
// have no choice but to recreate it.
tok = fset.AddFile(fh.URI().Filename(), -1, len(src))
diff --git a/internal/lsp/debug/trace.go b/internal/lsp/debug/trace.go
index bb402cfaa..ca612867a 100644
--- a/internal/lsp/debug/trace.go
+++ b/internal/lsp/debug/trace.go
@@ -119,6 +119,8 @@ func formatEvent(ctx context.Context, ev core.Event, lm label.Map) string {
}
func (t *traces) ProcessEvent(ctx context.Context, ev core.Event, lm label.Map) context.Context {
+ t.mu.Lock()
+ defer t.mu.Unlock()
span := export.GetSpan(ctx)
if span == nil {
return ctx
@@ -126,8 +128,11 @@ func (t *traces) ProcessEvent(ctx context.Context, ev core.Event, lm label.Map)
switch {
case event.IsStart(ev):
- // Just starting: add it to the unfinished map.
- // Allocate before the critical section.
+ if t.sets == nil {
+ t.sets = make(map[string]*traceSet)
+ t.unfinished = make(map[export.SpanContext]*traceData)
+ }
+ // just starting, add it to the unfinished map
td := &traceData{
TraceID: span.ID.TraceID,
SpanID: span.ID.SpanID,
@@ -136,13 +141,6 @@ func (t *traces) ProcessEvent(ctx context.Context, ev core.Event, lm label.Map)
Start: span.Start().At(),
Tags: renderLabels(span.Start()),
}
-
- t.mu.Lock()
- defer t.mu.Unlock()
- if t.sets == nil {
- t.sets = make(map[string]*traceSet)
- t.unfinished = make(map[export.SpanContext]*traceData)
- }
t.unfinished[span.ID] = td
// and wire up parents if we have them
if !span.ParentID.IsValid() {
@@ -157,19 +155,7 @@ func (t *traces) ProcessEvent(ctx context.Context, ev core.Event, lm label.Map)
parent.Children = append(parent.Children, td)
case event.IsEnd(ev):
- // Finishing: must be already in the map.
- // Allocate events before the critical section.
- events := span.Events()
- tdEvents := make([]traceEvent, len(events))
- for i, event := range events {
- tdEvents[i] = traceEvent{
- Time: event.At(),
- Tags: renderLabels(event),
- }
- }
-
- t.mu.Lock()
- defer t.mu.Unlock()
+ // finishing, must be already in the map
td, found := t.unfinished[span.ID]
if !found {
return ctx // if this happens we are in a bad place
@@ -178,7 +164,14 @@ func (t *traces) ProcessEvent(ctx context.Context, ev core.Event, lm label.Map)
td.Finish = span.Finish().At()
td.Duration = span.Finish().At().Sub(span.Start().At())
- td.Events = tdEvents
+ events := span.Events()
+ td.Events = make([]traceEvent, len(events))
+ for i, event := range events {
+ td.Events[i] = traceEvent{
+ Time: event.At(),
+ Tags: renderLabels(event),
+ }
+ }
set, ok := t.sets[span.Name]
if !ok {