Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Issue 2917183003: update the analyzer and analysis server perf tags (Closed)

Created:
3 years, 6 months ago by devoncarew
Modified:
3 years, 6 months ago
CC:
reviews_dartlang.org
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Patch Set 1 #

Total comments: 12

Patch Set 2 : updates for review comments #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+126 lines, -82 lines) Patch
M pkg/analysis_server/lib/src/analysis_server.dart View 3 chunks +10 lines, -5 lines 0 comments Download
M pkg/analysis_server/lib/src/context_manager.dart View 2 chunks +1 line, -4 lines 0 comments Download
M pkg/analysis_server/lib/src/status/diagnostics.dart View 7 chunks +9 lines, -8 lines 0 comments Download
M pkg/analyzer/lib/source/pub_package_map_provider.dart View 2 chunks +4 lines, -1 line 2 comments Download
M pkg/analyzer/lib/src/context/context.dart View 1 chunk +1 line, -1 line 0 comments Download
M pkg/analyzer/lib/src/dart/analysis/driver.dart View 1 3 chunks +16 lines, -2 lines 0 comments Download
M pkg/analyzer/lib/src/dart/analysis/file_state.dart View 1 2 chunks +16 lines, -3 lines 0 comments Download
M pkg/analyzer/lib/src/dart/analysis/library_analyzer.dart View 1 2 chunks +31 lines, -19 lines 0 comments Download
M pkg/analyzer/lib/src/generated/engine.dart View 3 chunks +17 lines, -32 lines 0 comments Download
M pkg/analyzer/lib/src/generated/utilities_general.dart View 4 chunks +14 lines, -3 lines 0 comments Download
M pkg/analyzer/lib/src/task/driver.dart View 1 1 chunk +5 lines, -2 lines 0 comments Download
M pkg/analyzer_cli/lib/src/analyzer_impl.dart View 1 chunk +1 line, -1 line 0 comments Download
M pkg/analyzer_cli/lib/src/perf_report.dart View 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 14 (4 generated)
devoncarew
- add some notion of a hierarchy to PerformanceTags (via dot separated names) - remove ...
3 years, 6 months ago (2017-06-03 18:55:13 UTC) #2
Brian Wilkerson
lgtm https://codereview.chromium.org/2917183003/diff/1/pkg/analyzer/lib/src/dart/analysis/file_state.dart File pkg/analyzer/lib/src/dart/analysis/file_state.dart (right): https://codereview.chromium.org/2917183003/diff/1/pkg/analyzer/lib/src/dart/analysis/file_state.dart#newcode415 pkg/analyzer/lib/src/dart/analysis/file_state.dart:415: // TODO(devoncarew): We likely shouldn't be doing raw ...
3 years, 6 months ago (2017-06-03 23:16:37 UTC) #4
scheglov
I'm looking forward to seeing this statistics :-) https://codereview.chromium.org/2917183003/diff/1/pkg/analyzer/lib/src/dart/analysis/driver.dart File pkg/analyzer/lib/src/dart/analysis/driver.dart (right): https://codereview.chromium.org/2917183003/diff/1/pkg/analyzer/lib/src/dart/analysis/driver.dart#newcode983 pkg/analyzer/lib/src/dart/analysis/driver.dart:983: List<int> ...
3 years, 6 months ago (2017-06-04 00:30:45 UTC) #5
devoncarew
Thanks - updated. I suspect there's some more low-hanging fruit here in terms of capturing ...
3 years, 6 months ago (2017-06-04 01:45:52 UTC) #6
devoncarew
Thanks - updated. I suspect there's some more low-hanging fruit here in terms of capturing ...
3 years, 6 months ago (2017-06-04 01:45:53 UTC) #7
scheglov
LGTM
3 years, 6 months ago (2017-06-04 01:51:29 UTC) #8
devoncarew
Committed patchset #2 (id:20001) manually as 0b79e4d20de07bd1e8c1d153d5c766c3d983c82a (presubmit successful).
3 years, 6 months ago (2017-06-04 02:51:30 UTC) #10
Paul Berry
https://codereview.chromium.org/2917183003/diff/20001/pkg/analyzer/lib/source/pub_package_map_provider.dart File pkg/analyzer/lib/source/pub_package_map_provider.dart (right): https://codereview.chromium.org/2917183003/diff/20001/pkg/analyzer/lib/source/pub_package_map_provider.dart#newcode12 pkg/analyzer/lib/source/pub_package_map_provider.dart:12: import 'package:analysis_server/src/analysis_server.dart'; A file in package:analyzer can't import a ...
3 years, 6 months ago (2017-06-05 12:42:34 UTC) #12
devoncarew
https://codereview.chromium.org/2917183003/diff/20001/pkg/analyzer/lib/source/pub_package_map_provider.dart File pkg/analyzer/lib/source/pub_package_map_provider.dart (right): https://codereview.chromium.org/2917183003/diff/20001/pkg/analyzer/lib/source/pub_package_map_provider.dart#newcode12 pkg/analyzer/lib/source/pub_package_map_provider.dart:12: import 'package:analysis_server/src/analysis_server.dart'; On 2017/06/05 12:42:33, Paul Berry wrote: > ...
3 years, 6 months ago (2017-06-05 13:35:45 UTC) #13
Paul Berry
3 years, 6 months ago (2017-06-05 15:41:57 UTC) #14
Message was sent while issue was closed.
On 2017/06/05 13:35:45, devoncarew wrote:
>
https://codereview.chromium.org/2917183003/diff/20001/pkg/analyzer/lib/source...
> File pkg/analyzer/lib/source/pub_package_map_provider.dart (right):
> 
>
https://codereview.chromium.org/2917183003/diff/20001/pkg/analyzer/lib/source...
> pkg/analyzer/lib/source/pub_package_map_provider.dart:12: import
> 'package:analysis_server/src/analysis_server.dart';
> On 2017/06/05 12:42:33, Paul Berry wrote:
> > A file in package:analyzer can't import a file from package:analysis_server,
> > because analysis_server isn't published on pub (it only exists in the SDK). 
> Is
> > there some other way we can accomplish this?
> 
> Thanks for the heads up! Yes, it would be possible to move the tag call back
up
> to the caller of computePackageMap(). This was creating some misleading time
in
> perf profile, but would be one way of solving the import issue.

Sounds good to me!  Would you mind putting together a CL?

Powered by Google App Engine
This is Rietveld 408576698