* Revert "Revert "Guard the service protocol's global handlers list with a reader/writer lock (#6888) #6895" (#6899)"
This reverts commit bcf5e1eae123478564468b77251a2674bd0e773e and applies fix for tests on Windows.
* Reland guard the service protocol's global handlers list with a reader/writer lock.
* Remove blank line
The service protocol holds the lock while waiting for completion of service
RPC tasks. These tasks (specifically hot restart/RunInView) may need to
modify a handler's description data.
Task execution and ServiceProtocol::SetHandlerDescription will obtain a shared
lock to make this possible. AddHandler and RemoveHandler will obtain an
exclusive lock in order to guard against a handler being deleted while a
service task is running.
The service protocol holds the lock while waiting for completion of service
RPC tasks. These tasks (specifically hot restart/RunInView) may need to
modify a handler's description data.
Task execution and ServiceProtocol::SetHandlerDescription will obtain a shared
lock to make this possible. AddHandler and RemoveHandler will obtain an
exclusive lock in order to guard against a handler being deleted while a
service task is running.
The service protocol's ListViews method needs to return description data for
each engine in the process. Previously ListViews would queue a task to each
UI thread to gather this data. However, the UI thread might be blocked from
executing tasks (e.g. if the Dart isolate is paused), resulting in a deadlock.
This change provides a copy of the engine's description data to the
ServiceProtocol's global list of engines, allowing ListViews to run without
accessing any UI threads.
Fixes https://github.com/flutter/flutter/issues/24400
* Set up secondary isolates with all kernel buffers rather than just one buffer.
* Capture copy of the list
* Make sure child_isolate_preparer_ is initialized only once
TL;DR: Offscreen surface is created on the render thread and device to host
transfer performed there before task completion on the UI thread.
While attempting to snapshot layer trees, the engine was attempting to use the
IO thread context. The reasoning was that this would be safe to do because any
textures uploaded to the GPU as a result of async texture upload would have
originated from this context and hence the handles would be valid in either
context. As it turns out, while the handles are valid, Skia does not support
this use-case because cross-context images transfer ownership of the image from
one context to another. So, when we made the hop from the UI thread to the IO
thread (for snapshotting), if either the UI or GPU threads released the last
reference to the texture backed image, the image would be invalid. This led to
such images being absent from the layer tree snapshot.
Simply referencing the images as they are being used on the IO thread is not
sufficient because accessing images on one context after their ownership has
already been transferred to another is not safe behavior (from Skia's
perspective, the handles are still valid in the sharegroup).
To work around these issues, it was decided that an offscreen render target
would be created on the render thread. The color attachment of this render
target could then be transferred as a cross context image to the IO thread for
the device to host tranfer.
Again, this is currently not quite possible because the only way to create
cross context images is from encoded data. Till Skia exposes the functionality
to create cross-context images from textures in one context, we do a device to
host transfer on the GPU thread. The side effect of this is that this is now
part of the frame workload (image compression, which dominate the wall time,
is still done of the IO thread).
A minor side effect of this patch is that the GPU latch needs to be waited on
before the UI thread tasks can be completed before shell initialization.
changes included:
45f9462398 Revert "[build] Debug means debug!"
9f7ad8d082 Fix recovery when parsing complex type variables
dcb665fa6d [hhh] Apply patch to flutter engine to fix hhh buildbot build step.
781ea1be70 [vm/interpreter] Fix interpreter frame recognition in stack walking, v2
c70666a3a3 Additional tests in the analyzer_plugin optype_test.dart file, follow up from https://dart-review.googlesource.com/c/sdk/+/80362.
7a3762d4a9 Fixes for convert tests
3f9c3e6ebc Update unterminated string error message length
a502061c11 Add test and implementation for package: uris
70d5cf8578 [VM] Rehash constant tables after cid-renumbering during app-jit training
cfbb70aa1c [gardening] Mark various RawDatagramSocket/ tests as flaky
2b23fa0607 Improve the way we call inferExpression
e18aeac38c Remove NamedExpressionJudgment
b429939377 Remove CheckLibraryIsLoadedJudgment
f13537064e Remove ThrowJudgment
1bc9bbcdb6 Remove StaticInvocationJudgment
1610356382 Remove StaticGetJudgment
5aa705776b Remove desugaredError
a474f49ada Revert "[vm/interpreter] Fix interpreter frame recognition in stack walking"
e9b8e24891 [vm] Adds mutator thread asserts around bytecode reading
f0a116d339 [dart2js] Some tear-off cleanup
a0cc3e2684 [vm/interpreter] Fix interpreter frame recognition in stack walking
ef870b25e6 Dont complain about TypeImpl in switch cases
531d8235eb Initial documentation for the public API
bff11184fe dart2js co19_2 status bingo
fdca304de5 Safari status bingo
ac2036d76b Firefox status bingo
c0c3fc4c5f [dartdevc] fix#34596, hot restart can now clear field & cache state
54690c0d38 Update dartdoc to 0.24.1.
5f4511a30e Stop adding tokens to unit API signature at EOF.
2a63500865 [infra] Add flutter-analyze builder to the test matrix (#34739)
f51ccbc010 bump to linter 0.1.70
91b5862c1e [vm] Add core-jit-all snapshot kind to gen_snapshot
0f32be21bf Document single root flag
a4a3f95748 Avoid using future closure in http connect.
8f4e379665 update kernel worker to enable sync-async
bb93696c96 Simplify canParse on LSP types to only check for required fields
36551624e1 Implement fromJson() constructors for LSP types
4585b8eb44 [gardening] Mark RawDatagramSocket/any_A01_t02 co19 test flaky
d04a36b4ab [infra] Fix third_party/pkg_tested step having slash in name.
1061c83779 Optionally report scanner errors via errors list rather than in the token stream
fed5bc62b6 [co19] DEPS and .status files updated
b27e4febaf Eliminate an unnecessary boolean variable
a29c04953e Automatically run analysis server from source if launched with the SDK source tree
d07f3edd5e [vm] Disable symbolization of Dart frames in Dart_DumpNativeStackTrace.
3039fb0031 Sort LSP files
0aa2dc6ead Batch 'inherit'
2bb4284c63 Add a few more tests and comments for GnWorkspace
5dfe3c8f94 bump to linter 0.1.69
1ca91cb6db Ensure unterminated string error is reported on visible characters
ce1eac3800 Adapt analyzer/FE comparison logic to handle mixins with >2 superclass constraints.
cc750ecec1 Revert "Don't clone constant ASTs when running with Analysis Driver."
c7bc970ba7 [vm/simdbc] Clean up slot for result in InlineCacheMiss
d5e5842971 [vm/interpreter] Fix stack frame recording in native calls
5d4ce27bea [vm] Fix race between Dart::Cleanup and VerifyBootstrapClasses.
4506e1d179 add linter changes (#34817)
a53172cd47 [vm] Print isolate sticky_error during shutdown to let user know of unhandled exceptions.
22b4ec0e78 [vm/interpreter] Clean up slot for result in InlineCacheMiss
b10a36b8df [vm] Set WasCompiled at safepoint
27b3f0ba6b [vm/frontend] Allow 'package:'-scheme uris as sources for frontend_server compilation.
a3db8a904e Support running analyzer_cli in worker mode in an isolate.
3fc1f36e28 [vm] Update status files for issue 34760.
f337b254ce Support running dartdevc in worker mode in an isolate.
18f56e59cf [infra] Add configuration name to results.json
843b4c9c23 Refactoring to prepare for serialization
531bce152d Tune invariants for inferredTypesMap
822fd6a1ed Remove StringLiteralJudgment
cf84ce88d6 Remove StringConcatenationJudgment
f0ebf05092 Remove RethrowJudgment
83c6963ce2 Remove PropertyGetJudgment
2a9ba09b93 Allow abstract operator == methods in switch case constants
5d1832b20a Disallow factory constructors in mixin declarations.
055ce6f101 fix syntax error on android
130f57f7f3 missing include for android
ee975c89e2 [dart2js] Force --fast-startup holders to be fast objects
8fb17e0b6a Missing import for some linux builds
5c1a40837e Update analyzer fix sorting by priority
6e23c3b3cb Support SO_REUSEPORT and IP_MULTICAST_TTL for datagram sockets.
9a69a5c1ee Remove more unnecessary awaits (from analyzer)
5b574415f8 Fix GnWorkspace root
7f9049991b [ VM / Dart API ] Updated Dart_Invoke Dart_SetField tests to check error messages
2d397d1da6 Fix for dartbug.com/34821, variable_name_contributor.dart to complete "var SomeType |", to "someType" and "_someType", for declarations that can be denoted private.
0eb5dbffac [vm] Revert service isolate setup in main.cc
445a43b58d [ VM / Testing ] Add build flags to enable code coverage
6066ac83e3 Improve dartfix console output
da67d58110 Remove some unnecessary await expressions
f99d89b513 Update dartdoc to 0.24.0
93b1955ed0 Dartfix ui tweaks.
009eabf892 [Test tool] Add VM options to compiler arguments in VMKernelCompilerConfiguration
984c407bb3 [build] Debug means debug!
3a69805f6b Switch enums that don't have type aliases to stronger-typed values
56306b90ee Fix html changes markdown syntax:
f921f203f4 [vm/bytecode] Fix constant evaluation of factory constructors in bytecode
20f4349951 Fix for reporting INVALID_USE_OF_PROTECTED_MEMBER in documentation comments.
fade5f33f0 Regenerate code based on the server spec after updates to the generator
1996e78049 Update dart2js_info in DEPS to 0.5.13
df621a1fff Fix cast exception in TypeNameResolver (issue-34809)
f4ffb426c4 [Gardening] Mark flaky co19 tests and filed issue
4d5c5ecdbf Update synced version of pkg:test
8300248edb [VM] Ensure inferred types are set on parameters
5d78509e25 Make FieldElementImpl.isCovariant a public member on FieldElement
9ba152b69e Mark deprecated fields as such
de6f24367a Fix build from two incompatible changes landing
cfa92dc090 Remove NullJudgment
9fadaec5f8 Remove NotJudgment
e65ed1d143 Remove LogicalJudgment
0bcd98eb76 Remove FunctionExpressionJudgment
4df63225a8 Remove IsJudgment and IsNotJudgment
035aad457e Remove ConstructorInvocationJudgment
840afb4f9d Remove ConditionalJudgment
7fa8bc3fee Remove BoolJudgment
2495e2e951 [vm] Silence output from kernel::Program::ReadFromFile.
c0ec6299ad Extract enums from the spec
ea72ba3b1d Move sorting from reading to codegen
ab253a8a4e Review comments for "[vm/aot] Fix regressions from dynamic invocation forwarders in AOT."
801f28666a Remove ThisJudgment
af00f7c05d [vm/aot] Fix regressions from dynamic invocation forwarders in AOT.
349adc5b1f Reland "[VM] Use c++/kernel2kernel constant evaluator for const StaticInvocation in the kernel IR"
ed73cc379d Increase file descriptor limit when running test.py on MacOS
5ce132a912 [infra] Copy core dumps to ISOLATED_OUTDIR on shards (#34746)
a2aa6c8414 Consolidate DDC dependencies on front_end
9137fe26ac Remove deprecated_problems.dart
ed7be67cab Remove CompilerOptions.onProblem
18cb217840 Remove CompilerOptions.onError and CompilationMessage
2084c5b2a9 Add toJson() methods
d4fac1684c Remove CompilerOptions.reportMessages
c6b43d9cb6 Use ansi color in the dartfix cli output.
c8cf355c54 Bump package dart_internal's SDK constraint upper-bound to <2.2.0
2ed614819d [vm] Fix MakeUnusedSpaceTraversable in the 'Instance' filler case
c362e4862f [vm] Invalidate KernelProgramInfo caches on a reload
ac6d4f7e65 [vm] Disable conversion of large typed data to external when sending through a message port
dea6c97a08 [vm] A couple more benchmark for kernel loading
f3c51a4be0 Organize imports.
ae22eaa48b Remove unused import
abcb84ac78 Re-order the dartdoc param.
311a184cb8 Remove type merging and the only instance that used it
dd59921896 Support "{@link xxx}" in LSP spec
1f344e4ee0 Add support for "class" instead of interface
0a6d960d66 Update bazel_worker to onDiagnostic
e502edf28b Add DiagnosticMessage support API
88bde88112 Add constructors and mark all fields final
bf270577cc [fasta] Report errors on generic function types in type arguments
06f9a9e354 [VM] Introduce function and osr entrypoints to the VM's IR
22b11717ac [fasta] Fix bounds checking: non-generic types are always well-bounded
0a986f3f80 Remove a few shadow nodes.
490421d166 Fixed Service Workers and any Promise/Future API with a Dictionary parameter.
77c5677abe Don't clone constant ASTs when running with Analysis Driver.
1cabefdf5b Fix analyzer/FE comparison tool handling of mixins.
45092fd0aa Improve output of analyzer/FE comparison tool.
a4f3df6534 [vm] Fix symlinks in test cases.
180b3dd301 Remove extra spaces in copyright notices in analyzer_plugin
d127ab9a27 Get rid of places that allocate lots of _Closure instances.
5cff16bc75 Use single InheritanceManager2 instance for Linker.
d8e52e5e82 Remove last references to InheritanceManager in analyzer/server.
9f00eec55b [ VM / Mirrors ] Added type checking to enforce strong mode semantics when using dart:mirrors
2ec7c9cdb1 Skip the tests that require super mixin support
469e1e2e64 Remove unnecessary library directives
1d0d9f1d3f [vm] Fix heap corruption while reading "kernel list" file
80cddf0d53 Rename writeOverrideOfInheritedMember() to writeOverride() in DartEditBuilder.
2c352111a4 Use just TypeSystem in InheritanceManager2.
977f5c2c21 Switch KytheDartVisitor to InheritanceManager2.
bc2ea566f1 Auto generate more analyzer error codes
a2a3c36b77 Switch CREATE_MISSING_OVERRIDES to writeOverrideOfInheritedMember() and using FunctionType signatures.
aabc26bafe Revert "[VM] Use c++/kernel2kernel constant evaluator for const StaticInvocation in the kernel IR"
dac3e0d9df [dart2js] Don't create instance call-through stubs for statics
e34472db10 Remove unused import
22190e4d79 [vm] In IsolateMirror.loadUri, note that a kernel file at a URI may not contain any library with that URI.
dc9d6785de Report compile-time errors on invalid switch cases
af8d026337 Address dartfix comments and improve output
841a75698d [vm] Fix typo in previous commit
5b6220d44d [vm/compiler] Start of loop framework
0b1b09116a Simplify handling of non-shadow nodes in type inference
aa9f0f911f Update stream.dart
0e001641a9 Re-write invalid ASTs and update fix to reflect new AST structure for invalid type arguments on named constructors
48544cd77d Use InheritanceManager2 in InstanceMemberInferrer.
29ff9e4a6a [VM] Use c++/kernel2kernel constant evaluator for const StaticInvocation in the kernel IR
3199875231 Remove TypeSystemImpl.
0b78ac7f38 [VM] Add regression test for buildbot flakiness due to smi-widening optimization in VM
af7cead848 Clone default values of mixin application constructors
47c55605b8 Reland: [vm] Add a library and class cache to KernelProgramInfo
87a10d9811 Provide context for NotAType
69cf0ec97c Signal an error if a class extends a mixin
99815c8d6d Do not print --output_directory in reproduction commands
9b41728b2d Remove FileParseExceptionHandler from FileSystemState.
eee8787a8d Generate noSuchMethod forwarders for private members inherited from a class in a foreign library.
5b1fcb09df Remove d2fe ikg minimal benchmark from commit queue.
54ef78b7c5 Remove non-strong vm dill files from SDK
6177615d71 [kernel] Fix subtype relationship for generic function types
1f4dfce179 [gardening] Mark co19 LibTest/io/HttpServer/close_A05_t01 flaky
5cbb640f7c Error for type arguments after named constructor with implicit new
2fa1143600 Check classes at mixin applications
ade528c4e6 Fixed the type alias omission in the def. of simple bounds
ddf67772bb Remove warning about inferring packages URI from dart2js
18110717fe Move infer methods to visitor
bd223d0ec4 Add consistent_type_error_test
d95f63d752 Update dartfix to use new invalid type argument fix
0cdd5b9ff3 Raise warning to error: duplicate key in a const map is now an error in Dart.
f6ca2c1d8f Remove the Dart 1 tests.
9f98f5f44c Remove instantiateToBounds parameter from FunctionTypeImpl.relate.
82f31cd250 Add types to method args to avoid analysis warnings.
63c9a241e3 Upgrade WRONG_NUMBER_OF_TYPE_ARGUMENTS_CONSTRUCTOR from a warning to an error
5658d406b7 Add changelog entry for integer literals in double contexts.
6b67cd784b [vm] Make UBSAN happy for the code in Range::BitwiseOp
e4c3fa0a9c Improve recovery when parsing named constructor invocation with invalid type arguments
3e7ce992cf [vm/tfa] Implementation of type arguments tracking in TFA.
001343ce06 [vm, gc] Disable reads and writes to from-space after a scavenge.
97ffcd9a3d [vm] Disable incorrect widening of smis to int32
1a4933715e [gardening] Mark co19 LibTest/io/RawDatagramSocket/any_A03_t01 flaky
e4842a293b Remove extra spaces in headers
58c90dc488 [vm] Fix bytecode in core-jit for simarm64
fab5d0a50d In InheritanceManager remove unused, and deprecate used (in lints) methods.
2989116219 Add some special cases for types we can't/don't need to parse
49b121f20d Remove TypeParameterSerializationContext.location.
244e6c7ffc Infer package URIs
cc884b3449 Remove optional argument from FunctionTypeImpl.forTypedef.
931202df27 Improve wrapping of lists and *notes* in LSP spec comments
3e897ac3b1 [vm] Extend previous status file updates.
23e7f9d1eb Handle references to other classes in comments
472c898c87 [dartdevc] fix for-in loop variable shadowing a var used in initialzer
3fe3106489 [gardening] Fix leaks in run_vm_tests binary detected by ASAN.
a6c8b62056 Remove dummy .packages files
2f7e7a4b52 [vm] Update status files for vm-kernel-mac-product-x64 for issue 34760.
e12538fff0 Move package bundle functionality into SummaryBaseTestStrategy.
96737787e2 Add LSP spec code-gen output
5e7ea5b672 [infra] Add .vpython spec to fix gsutil on the bots (#31065)
3cf0008b13 [vm/bytecode] Remove dependencies on ASTs when running with bytecode
fc0decc262 Improvements to the Dart code generated from the LSP spec.
efcca1132b Switch ErrorVerifier and OverrideVerifier to InheritanceManager2.
c347850976 [gardening] Mark co19 LibTest/io/RawDatagramSocket/timeout_A06_t01 as flaky
5e1bf1d135 Create LibraryScope once per library analyzer.
7c7df7bfa4 Add initial version of feature specification on interface conflicts.
f2bffc6872 Revert "[infra] Upgrade gsutil to a new version (#31065)"
1809bae318 Revert "Ignore JSON exceptions when reading (empty) test results file"
787194e738 [infra] Upgrade gsutil to a new version (#31065)
265d0d9ec1 Update status files after 8648d782
23c36ed029 Elaborate that -0 means -0.0 in double context or when compiled to JS.
8648d782ae Reland "[fasta] Report errors for bounds violations"
5c9a8d8cb5 [VM] Add $target_gen_dir/gen_kernel_bytecode.dill.d to outputs of GN action, to ensure directory is created before action is run
49d7fb39ac Temporarily ignore --strong option in flutter builds
f0a30bc8d1 Revert "[vm] Add a library and class cache to KernelProgramInfo"
1c2ed4ac11 [infra] Include gsutil in vm-kernel fileset to enable coredumps on shards (#31065)
5b32ab3be6 Remove the word "strongMode" from some package:kernel libraries.
dfb8e97b86 Report errors on members hiding prefixes
235a918233 [vm] Remove Dart_LoadScript, Dart_LoadLibrary, Dart_LoadSource, etc.
90e362f63c Deprecate the last non-deprecated EMPTY_LIST
0ab8e42fea Use a special context for serializing generic function types.
c47879d354 Remove one-phase summary logic.
b9dd229e35 Convert element.dart to triple-slash comment style.
e70a7aab8a [VM] Dead code removal - Remove dead code around creation of service isolate in gen_snapshot.cc - Create service isolate from the core snapshot - exclude sources from platform dill file (saves about 2.5MB in size)
662ff7f112 [vm] Remove TokenStream, TokenValue, CompilerStats.
a933f42b9e [VM] Use Symbols::Empty() when there is no source for a script instead of creating new empty string objects. Change-Id: I8ec6702557b07c4c4ede2aece5a3f25b4cde1a5b Reviewed-on: https://dart-review.googlesource.com/c/79060 Reviewed-by: Ryan Macnak <rmacnak@google.com> Commit-Queue: Siva Annamalai <asiva@google.com>
72b31316e4 [observatory] Fail gracefully when a Script lacks source code.
This reverts commit 1743aff91e7717c106bf3a0dc7150fbb9d5299ba.
We revert because it breaks the engine to framework roll. Reverting as
soon as possible allows other engine commits to roll into framework
first so we'll have smaller engine rolls which is good for triaging
regressions.
TBR: rmacnak-google
1f4dfce179 [gardening] Mark co19 LibTest/io/HttpServer/close_A05_t01 flaky
5cbb640f7c Error for type arguments after named constructor with implicit new
2fa1143600 Check classes at mixin applications
ade528c4e6 Fixed the type alias omission in the def. of simple bounds
ddf67772bb Remove warning about inferring packages URI from dart2js
18110717fe Move infer methods to visitor
bd223d0ec4 Add consistent_type_error_test
d95f63d752 Update dartfix to use new invalid type argument fix
0cdd5b9ff3 Raise warning to error: duplicate key in a const map is now an error in Dart.
f6ca2c1d8f Remove the Dart 1 tests.
9f98f5f44c Remove instantiateToBounds parameter from FunctionTypeImpl.relate.
82f31cd250 Add types to method args to avoid analysis warnings.
63c9a241e3 Upgrade WRONG_NUMBER_OF_TYPE_ARGUMENTS_CONSTRUCTOR from a warning to an error
5658d406b7 Add changelog entry for integer literals in double contexts.
6b67cd784b [vm] Make UBSAN happy for the code in Range::BitwiseOp
e4c3fa0a9c Improve recovery when parsing named constructor invocation with invalid type arguments
3e7ce992cf [vm/tfa] Implementation of type arguments tracking in TFA.
001343ce06 [vm, gc] Disable reads and writes to from-space after a scavenge.
97ffcd9a3d [vm] Disable incorrect widening of smis to int32
1a4933715e [gardening] Mark co19 LibTest/io/RawDatagramSocket/any_A03_t01 flaky
e4842a293b Remove extra spaces in headers
58c90dc488 [vm] Fix bytecode in core-jit for simarm64
fab5d0a50d In InheritanceManager remove unused, and deprecate used (in lints) methods.
2989116219 Add some special cases for types we can't/don't need to parse
49b121f20d Remove TypeParameterSerializationContext.location.
244e6c7ffc Infer package URIs
cc884b3449 Remove optional argument from FunctionTypeImpl.forTypedef.
931202df27 Improve wrapping of lists and *notes* in LSP spec comments
3e897ac3b1 [vm] Extend previous status file updates.
23e7f9d1eb Handle references to other classes in comments
472c898c87 [dartdevc] fix for-in loop variable shadowing a var used in initialzer
3fe3106489 [gardening] Fix leaks in run_vm_tests binary detected by ASAN.
a6c8b62056 Remove dummy .packages files
2f7e7a4b52 [vm] Update status files for vm-kernel-mac-product-x64 for issue 34760.
e12538fff0 Move package bundle functionality into SummaryBaseTestStrategy.
96737787e2 Add LSP spec code-gen output
5e7ea5b672 [infra] Add .vpython spec to fix gsutil on the bots (#31065)
3cf0008b13 [vm/bytecode] Remove dependencies on ASTs when running with bytecode
fc0decc262 Improvements to the Dart code generated from the LSP spec.
efcca1132b Switch ErrorVerifier and OverrideVerifier to InheritanceManager2.
c347850976 [gardening] Mark co19 LibTest/io/RawDatagramSocket/timeout_A06_t01 as flaky
5e1bf1d135 Create LibraryScope once per library analyzer.
7c7df7bfa4 Add initial version of feature specification on interface conflicts.
f2bffc6872 Revert "[infra] Upgrade gsutil to a new version (#31065)"
1809bae318 Revert "Ignore JSON exceptions when reading (empty) test results file"
787194e738 [infra] Upgrade gsutil to a new version (#31065)
265d0d9ec1 Update status files after 8648d782
23c36ed029 Elaborate that -0 means -0.0 in double context or when compiled to JS.
8648d782ae Reland "[fasta] Report errors for bounds violations"
5c9a8d8cb5 [VM] Add $target_gen_dir/gen_kernel_bytecode.dill.d to outputs of GN action, to ensure directory is created before action is run
49d7fb39ac Temporarily ignore --strong option in flutter builds
f0a30bc8d1 Revert "[vm] Add a library and class cache to KernelProgramInfo"
1c2ed4ac11 [infra] Include gsutil in vm-kernel fileset to enable coredumps on shards (#31065)
5b32ab3be6 Remove the word "strongMode" from some package:kernel libraries.
dfb8e97b86 Report errors on members hiding prefixes
235a918233 [vm] Remove Dart_LoadScript, Dart_LoadLibrary, Dart_LoadSource, etc.
90e362f63c Deprecate the last non-deprecated EMPTY_LIST
0ab8e42fea Use a special context for serializing generic function types.
c47879d354 Remove one-phase summary logic.
b9dd229e35 Convert element.dart to triple-slash comment style.
e70a7aab8a [VM] Dead code removal - Remove dead code around creation of service isolate in gen_snapshot.cc - Create service isolate from the core snapshot - exclude sources from platform dill file (saves about 2.5MB in size)
662ff7f112 [vm] Remove TokenStream, TokenValue, CompilerStats.
a933f42b9e [VM] Use Symbols::Empty() when there is no source for a script instead of creating new empty string objects. Change-Id: I8ec6702557b07c4c4ede2aece5a3f25b4cde1a5b Reviewed-on: https://dart-review.googlesource.com/c/79060 Reviewed-by: Ryan Macnak <rmacnak@google.com> Commit-Queue: Siva Annamalai <asiva@google.com>
72b31316e4 [observatory] Fail gracefully when a Script lacks source code.
Roll tonic to dd971f40ba7646fab586ac2b6370721257109cb7
* Roll dart to version c6254163dc7a5f704d7609af65e4650ef0550ccd
This roll contains the following changes :
c6254163dc Fix source filter in built rule.
a97ddf8ce1 [vm/bytecode] Fix sporadic crashes when running with bytecode.
cf007d1f40 [infra] Add missing entries to the test matrix
9db63ee729 [vm/bytecode] Set 'TypeEnvironment.thisType' when generating bytecode
9c75ab7aa9 More common fasta/analyzer parser error codes
a712a910cf Revise class and mixin header recovery
588b0d1222 make pubspec file path to absolute
74f2348941 (fixdeps) [dart/fuzzer] DartFuzz Improvements
291f8abff8 More hint cleanup in analyzer
1cd2fc5883 [Gardening] Mark pause_on_unhandled_async_exceptions_test also flaky on kernel
1af136987b [infra] Prepare test matrix for the Dart 1 removal
0cc7993ee3 Clean up a couple of hints in analyzer code
22da7488ac [Gardening] Mark two service tests as passing on dartk-windows
def9d4c405 Cleanup endMethod and endFactoryMethod parameter recovery
46983c2de9 [vm/aot/tfa] Detect if a method/setter is called from this
2a6b566ca2 Move byte store to package:analyzer
45cb0815bc Move PerformanceLogger to package:analyzer
3a2308f5c2 Move jenkins_smi_hash to package:analyzer
ec4663ee5c Don't build runtime_kernel in benchmarks.
6b547e2683 Convert analyzer to use onDiagnostics
218d30e26a Skip source files attributed to 'dart:' libraries when writing a dep file.
45a5bc063a Mark the Script.source field as nullable.
ff3992b9ea [test tool] Pass --packages to gen_kernel
644342a6e6 Prepare for analyzer 0.33.0 publish.
cf48bad128 bump linter to 0.1.67
097e716694 [vm/bytecode] Update test status
69358a8755 [vm] Remove Dart_IsSnapshot and Dart_IsDart2Snapshot.
248a15f994 Upgrade dartdoc and dependencies for 0.22.0.
1085dd13d1 Use separate 'type index' for mixin, some nodes might be unresolved.
854720a099 Fix build rule.
878779e1a2 Fix test and add TODO for others that need updating
3daa63bc4c Revert OverrideVerifier back to the old InheritanceManager.
aa25872027 [vm] Fix pkg/vm/tool/precompiler2.
ab3ef0914c Allow "yield" as label
f529ab10f0 Allow "operator" as a static method name
cbf97be4e7 [fuchsia] Switch to new fdio API names
aedf5127bd [vm] Enable bump allocation scope for kernel loader
57f8542ea5 Fix warnings in analyzer package.
a33c1a1c17 [vm] Use proper lookup to find constructor during rebinding.
270fd8e4a8 [vm/aot] Handle annotations on parameters in tree shaker and constant evaluator
6d0601a72b [vm/bytecode] Add bytecodes for int operations and '== null'
10b1b35418 Update changelog for override check fixes
eacf720d2b Functions to demangle mixin application class names
bb2775b16a Only perform override check on declared members.
d3bd06d4e8 Check class interface requirements using override check code.
2dfe46fba2 Additional work on MOVE_FILE and associated tests
6c5326ae80 [vm] Fix issue with debugging generated code within RR.
c57a844841 Characterize behavior of FunctionTypeImpl.forTypedef when typeArguments not provided.
ed42aab273 Move source.dart to package:analyzer
82da68f3f5 Move api_signature to package:analyzer
829ba8a118 Remove unused file_repository.dart
b8cef2cefe Move flat_buffers to package:analyzer
27b17c76d8 Remove unused uri_resolver.dart
29d57107dd Move dependency_walker to package:analyzer
62e67d7277 Adjusted instantiate-to-bound.md such that it covers type aliases
440b9c61a7 Handle duplicated declaration used as prefix.
eb0ec965e3 Move codegen/tools.dart to package:analyzer
fd9a2cb510 Remove unused stuff
bc49637085 Convert package:dev_compiler to use onDiagnostic
44c6312df8 Consolidate VM dependencies on front_end
b628a62aa8 Remove ConstantValueComputer and DirectedGraph.
bd7b776bb4 Fix more quick fix tests
621c41f091 Add mixin support to InterfaceTypeImpl.isMoreSpecificThan.
d2e08e4952 [vm] Disable concurrent sweeping when --deterministic is set.
30aa464f77 [VM] Remove 'corelib' and 'dart-io' sources generation into C++ arrays
abe93563c4 [vm, service] Enable _collectAllGarbage in release mode.
80db08809c Pass InheritanceManager2 into resolver, use for BinaryExpression.
3ef994c287 Some clean ups in InheritanceOverrideVerifier.
4053ff96ec [vm] Fix --print-instructions-sizes-to in debug mode.
edd86ef7a1 Generate quick fix for await in non-async (issue 34647)
49f36b0b2d Reland "Test that the result of instantiate-to-bounds is appropriately checked for super-boundedness."
0016f80467 [dart/fuzzer] Pick execution modes at random by default
4df3626d19 Remove support for (non)nullable types from Analyzer.
93c5dcd00a [infra] Add fuzz testing builder to the test matrix
5cbb1bcdf9 Force lf-lineendings for .dart-files.
* Roll Dart to version 7f9a9feae181573cca609fd1b8760d7992176699
This contains the following commits:
7f9a9feae1 [vm, service] Rename 'invoke' parameter 'receiverId' to 'targetId'.
fa3d8fa567 Don't check for the file presence in transitive sets when we are just creating it.
6f3de544ed [ VM / Hot Reload ] Fixed tests which were crashing periodically. Fixes issue #34599
e811b29788 [vm, gc] Restore growth policy when concurrent marking is not enabled.
0518b334ba Address comments
7c46a28505 Update convert class to mixin assist to remove "abstract"
06744c68b2 Pull reporting for unimplemented inherited members, and declared abstract members from ErrorVerifier.
45c7e4365c Update dartfix to apply changes to file rather than displaying them
9ad59bada2 [dartdevc] fix#34358, int to double conversion for literals
edddc0ba58 Generate source changes for converting class to mixin
2742a5d558 [Gardening] Update test status
d9de98e164 [VM] Delete some dead code in gen_snapshot.cc
51b8fc7bb0 AwaitExpression.precedence => 14
2390b3605f Create a package for shared diagnostics
629d76eb46 Simple dartfix that suggests class to be converted to mixins
8a2cfd8613 Implement InheritanceManager2.getMember() and use it in some places.
71eaf3209b Fix broken 'fasta testing sdk'.
d79f7493b3 Test that type parameters of typedefs are properly bounds checked.
b36f4fffc4 Allow multiple analyzer codes
82b3501c3c Fix supermixin handling in dart2js
c9b05d3f1f Allow super calls in mixin declarations
225b8d5075 Specialize Object properties in static type computation
4a58112a7c Move kernel_impact.dart from ssa/ to kernel/
aaf3b709e6 [release] Prepare changelog for 2.1.0-dev.6.0
e9c949372e Remove unused parts of J/K*Env classes
4659cb9480 Fully split JsToElementMap and KernelToElementMap
a617700b17 Removes code that has become redundant since 98a9adf.
7c54fab8a5 Adjust status files.
76470aca47 [VM] use coresnapshot when initializing an Isolate
* Address review comments.
The `dart_vm_entry_points.txt` file is now deprecated in favor of annotations.
Support for parsing and generating the entry-points files will be removed from Dart shortly.
- Switch core snapshot to Dart 2 and remove support for loading platform.dill.
- Remove support for loading script snapshots.
- Remove support for loading source.
- Remove settings and fix names to reflect the above.
- Remove support for loading the service isolate from source.
The service isolate creation callback may occur on a background thread before
the call the Dart_Initialize within the DartVM construtor can finish. We store
pointers to various snapshots within the DartVM object. These snapshots are
necessary for to successfully create the service isolate. The isolate creation
callback access the global object within the ForProcessIfInitialized method.
This method can return null if the VM object has not been initialized. This
leads to the service protocol failing to start in a non-deterministic manner.
This patch moves the creation and access of the DartVM object within a critical
section.
* Roll Dart to version 1be785ae2ddb1754a184cd638ab719e94d86b4e9
This rolls includes the following changes :
1be785ae2d Clean up some dead code
7b9fb893d2 [vm] Add a service method for 'invoke' as the dual to 'eval'.
099f1504fa Mention -O flag in CHANGELOG
79f69abace [vm/compiler] breakage fix: add missing break
96a1e9985f Fix the pkg bot
7818db20a7 Add analysis hint for invalid use of @visibleForTemplate code.
71d96019d1 [vm/compiler] Introduce 64-bit NEGATE - all archs.
5013a2ccc4 Remove spurious line.
ef2f777625 Mark some analyzer tests as being flaky
cf560fe17b Fix a couple of the tests failing on the analyzer with fasta parser bot
63c11693e6 [gardening] Fix language_2/type_variable_promotion_test.
d0f28884ff [VM] Fix expression evaluation implementation: Never register temporary/unused classes with the system.
e2a1807fc2 [gardening] Update status for io/compile_all_test in PRODUCT AOT mode
f7ff739448 Insert date of 2.0.0 release in Changelog
bcabad6014 [vm] Fix SIMARM64 build on Windows.
af02ccae83 [infra] Fix filesets for new vm-kernel-precomp builders
8e2f28e264 Update homebrew to drop the @2 tab and fix for 2.0
ba119d7292 [VM] Remove "$compiler == precompiler" sections from language_2_precompiler.status
f3a2c0e28f [release] Prepare changelog for 2.1.0-dev.0.0
88cba7d860 [vm/kernel/bytecode] Fix arguments descriptor for List._fromLiteral call in bytecode
bd45ec0c4b [vm, gc] Refactor PageSpace::CollectGarbage to ensure the safepoint and task count remain well-scoped even with early exits.
8195fd8c64 Repair dart2js/string_interpolation_test
a0b335ac6c Try no implicit casts in pkg/analyzer_cli.
3d25d3761b Update pub - leave packages directories alone
327db5e9ab [vm] Fix kernel_isolate use_field_guard flag for kbc
a1ca88f554 Resolve invocation arguments to parameters.
* Address source format error.