Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

language_2/deferred_optimized_test Crashes on windows ia32 #35405

Closed
a-siva opened this issue Dec 13, 2018 · 1 comment
Closed

language_2/deferred_optimized_test Crashes on windows ia32 #35405

a-siva opened this issue Dec 13, 2018 · 1 comment
Assignees
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends. crash Process exits with SIGSEGV, SIGABRT, etc. An unhandled exception is not a crash. gardening

Comments

@a-siva
Copy link
Contributor

a-siva commented Dec 13, 2018

https://dart-review.googlesource.com/c/sdk/+/85746 introduced a crash on windows ia32 debug version.
https://dart-review.googlesource.com/c/sdk/+/87185 extended the crash to the windows ia32 release version.

c:\b\s\w\ir\cache\builder\sdk\runtime\vm\runtime_entry.cc: 924: error: expected: !caller_code.IsNull()
thread=3116, isolate=kernel-service(03EC07A0)
  [0x0087a7ee] Dart_RootLibrary
  [0x0087a7ee] Dart_RootLibrary
  [0x00bcb639] Dart_RootLibrary
  [0x008edf78] Dart_RootLibrary
  [0x008f1ed9] Dart_RootLibrary
@a-siva a-siva added area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends. gardening crash Process exits with SIGSEGV, SIGABRT, etc. An unhandled exception is not a crash. labels Dec 13, 2018
dart-bot pushed a commit that referenced this issue Dec 13, 2018
            #35405

Change-Id: I3c556e93dad628fe213458fe4ad91e999b842874
Reviewed-on: https://dart-review.googlesource.com/c/87262
Reviewed-by: Ryan Macnak <rmacnak@google.com>
@mkustermann
Copy link
Member

Thanks for marking it in the status file. The reason for different behavior on ia32 seems be due to not using an appjit version of the kernel isolate.

The stack looks really weird:

thread=4496, isolate=kernel-service(03E48D78)
  [0x00df112e] dart::Profiler::DumpStackTrace
  [0x00df112e] dart::Profiler::DumpStackTrace
  [0x00f2e749] dart::Assert::Fail
  [0x00e32de4] dart::StackFrame::IsDartFrame
  [0x00e1e4e2] dart::HandleStackOverflowTestCases
  [0x00e1d04c] dart::DRT_StackOverflow
  [0x03f4072c] Unknown symbol
  [0x0604036f] Unknown symbol
  [0x03f40af3] Unknown symbol
  [0x00d77454] dart::DartEntry::InvokeFunction
  [0x00ec49c2] dart::kernel::ConstantEvaluator::RunFunction
  [0x00ec1e4a] dart::kernel::ConstantEvaluator::EvaluateConstructorInvocationInternal
  [0x00ec2360] dart::kernel::ConstantEvaluator::EvaluateExpression
  [0x00ec15b7] dart::kernel::ConstantEvaluator::EvaluateAnnotations
  [0x00d9cec1] dart::kernel::EvaluateMetadata
  [0x00dbe81a] dart::Library::GetMetadata
  [0x00da4616] dart::kernel::KernelLoader::LoadProcedure
  [0x00da19bc] dart::kernel::KernelLoader::FinishClassLoading
  [0x00da1bb1] dart::kernel::KernelLoader::FinishLoading
  [0x00d55f31] dart::ClassFinalizer::FinalizeClass
  [0x00ef5b8f] dart::Compiler::CompileClass
  [0x00db9415] dart::Class::EnsureIsFinalized
  [0x00ef7d8c] dart::BackgroundCompiler::Start
  [0x00e1a71f] dart::DRT_HelperOptimizeInvokedFunction
  [0x00e1c78f] dart::DRT_OptimizeInvokedFunction
  [0x03f4072c] Unknown symbol
  [0x03f40a3c] Unknown symbol
  [0x03f40af3] Unknown symbol
  [0x00d77454] dart::DartEntry::InvokeFunction
  [0x00ec49c2] dart::kernel::ConstantEvaluator::RunFunction
  [0x00ec1e4a] dart::kernel::ConstantEvaluator::EvaluateConstructorInvocationInternal
  [0x00ec2360] dart::kernel::ConstantEvaluator::EvaluateExpression
  [0x00ec15b7] dart::kernel::ConstantEvaluator::EvaluateAnnotations
  [0x00d9cec1] dart::kernel::EvaluateMetadata
  [0x00dbe81a] dart::Library::GetMetadata
  [0x00da4958] dart::kernel::KernelLoader::LoadProgram
  [0x00d1c530] dart::BootstrapFromKernel
  [0x00d1c85d] dart::Bootstrap::DoBootstrapping
  [0x00dc3a9b] dart::Object::Init
  [0x00d737b3] dart::Dart::InitializeIsolate
  [0x00f1931b] dart::CreateIsolate
  [0x00f1bd5f] Dart_CreateIsolateFromKernel
  [0x00c7c425] dart::bin::CreateAndSetupKernelIsolate
  [0x00c7c68e] dart::bin::CreateIsolateAndSetup
  [0x00d9ea81] dart::RunKernelTask::Run
  [0x00e40c25] dart::ThreadPool::Worker::Loop
  [0x00e40de3] dart::ThreadPool::Worker::Main
  [0x00dee50e] dart::ThreadEntry
  [0x00f427b6] thread_start<unsigned int (__stdcall*)(void *)>
  [0x753362c4] BaseThreadInitThunk
  [0x77e01f69] RtlSubscribeWnfStateChangeNotification
  [0x77e01f34] RtlSubscribeWnfStateChangeNotification

Notice that while bootstrapping the kernel isolate, we're evaluating annotations and running code. At that point the megamorphic miss stub is null, which seems to be the bug.

a-siva added a commit to a-siva/engine that referenced this issue Dec 22, 2018
This is the first roll of Dart post Flutter 1.0 and it contains the
following changes :

d1817ddc91 Fix typo
074627f170 Clean up the fasta-related tests
0f523f2462 [infra] Adds pkg linux debug buildbot
5b3b1996a8 Integrated generalized-void.md into dartLangSpec.tex
2219b51b7e [gardening/flutter] Update 3xH patch to remove --sync-async flag from engine build file.
fbd014bc8a Revert "[gardening] remove sync-async flag use from flutter"
58fd3aaaf2 [gardening] remove sync-async flag use from flutter
da0216e92d [Kernel] add serializers for more simple expressions
336069a88e Update checked-in SDK to version 2.1.1-dev.0.1
f0377b2f92 Add support for parsing simple nullable types
aeb873187d [Kernel] Add text serializers for lists
d0c2cdcd4c [Kernel] Remove the syncAsync flag
26faa44d41 Fix error in incremental test
7bc2f82011 [dartdevc] implement dart:developer via console logging
2f26679409 [vm/reload] Reset isolate reload kernel library stats to zero.
8dea340fda [vm/kernel] Ensure alignment of metadata in case of concatenated kernel files
e6696267b2 [VM/GC] Fix field initialization bug.
dff358223e [VM/Runtime] Delete flag --sync-async and it's uses.
7a02066c30 [vm] Report kernel program stats for hot-reload request.
c0083a6e03 [VM/GC] Turn off concurrent marking during a reload.
4d8e48c339 Fix probot configuration to point to the "needs-info" label.
096e734b05 Replace //@NNBD with @pragma(analyzer:non-nullable*)
a80d93c81f Add global analyzer non-nullable flag
6d8d57c967 [vm/kernel] Cleanup use of legacyMode in pkg/vm/test
5fdab895a2 Use static types in inferrer
aec0aab155 [vm/compiler] Detect proper induction bounds
44a492f351 Send errors to LSP clients that request unsupported encodings
f01449e082 Add main method to rasta/issue_000035{,a} test cases
bbeee457e3 Add message parameter key for names
b195d435f3 Remove FieldBuilder.hasTypeInferredFromInitializer
e45e334548 Rename strong mode to legacy mode in package:kernel
2b766eef7e Don't try to access refactor result if it may be null due to being cancelled
7280ca87a0 LSP requests must always be responded to, even if optional
9d77f18784 [Kernel] Serialize logical expressions
1172c36c87 [co19] DEPS updated
091e38afcb [Kernel] Implement more text serialization
9e48cc7f25 Adjust specification of type tests to include promotion to X & S
ff44e27c5a Implement text serialization of strings
cc5c78cfd2 Clean up of static semantics check for redirecting factories.
9611f8bd99 [vm] Ensure ReadConstantTable works if no libraries in the kernel file.
958cad66c6 Refactor parser insertParens callsites
a862e8645a Remove docs/language/informal/subtyping.md, which is now in the language repo
f69aabdb62 Move the check for INVALID_SEALED to the BestPracticesVerifier
ac506a9d92 Check for @immutable on mixin application. Fixes #35458
9c8d627347 [vm interpreter] Remove intrinsics code as 'Intrinsic' bytecode is not used.
5a0dd76be0 #35222 Return null and Print Error with invalid UTF8 input
2a323d6afe Fix adding implicit casts when the target method is in a superclass.
a94137136f [vm] Propagate failure to instantiate bogus signature to optimizing compiler.
1a260925ef [vm] Unify CanonicalType and DeclarationType on 'Class' VM class.
de65d6892a Remove legacyMode from type inference
cbe30dc0d5 Remove Target.disableTypeInference
bf5ae2215b Store token in ImplicitType
a6e37888ee Merge legacy and disable inference modes
aa57aab82d Update expectations for legacy/statements
141fd9e426 Disable type inference: override checks
0df70ab15b Special type for signalling missing type arguments on literals
1ce14103e8 Remove MapEntryJudgement
612b6884c4 Split the text serializer into libraries
4283735fa1 First pieces of Kernel text serialization
c0b5a28417 Refactor Parser.checkFormals
278299c73b Ensure variable holder is a fast-mode object
2bd60aa109 Clean up uses of DartType.flattenFutures
6ece9f910c Prepare to publish analyzer version 0.34.1.
8905876e82 Create a double value from an int literal when it was promoted
2fc5a23dd5 [vm/kernel] Enable sync-async in pkg/vm tests
b1c963c84b Load kernel files in reverse order to accommodate topological order that pub build_runner produces.
6c2d8bc8c1 Record getter and setter names in the minified-name table
c52ff42c55 Add TokenStreamGhostWriter for parser lookahead
37bf87b9bf Use ChangeBuilder, not DartChangeBuilder to update pubspec file.
554f0c9d36 Clean up the use of the experimental flags in tests
62850bf967 update pubspec version
b4a7255684 Issue 35438. When no linked library, fill also _resynthesizedUnits when creating a synthetic library.
f8a680e511 Revert "Remove kernel isolate API from the public dart_api.h"
b2d6a2327c Convert two uses of the old type algebra API to the new
47fec6ce00 Make capacity check and usage increase atomic.
f94aa6e329 Make the internal TypeSystem implement the public TypeSystem
8535d0641a [vm] Workaround for failure to instantiate bogus type in optimizing compiler.
bfc8ba1459 Update dartfix SDK constraints
78fb462332 [vm] documentation of TypeArguments vs arguments
0e34af62d2 [Gardening] Skip standalone_2/io/test_runner_test (not relevant for AOT)
7840675171 [vm] Fix vm/cc/ICDataTest: use release-store/acquire-load for array of ICData objects.
4163478f9b Update AstBuilder to build AST with nullable types
a9c1c056a7 Use the first two key characters for sharding in FileByteStore.
570205c2b8 Unwrap OverlayResourceProvider in createByteStore().
01a9c1bd11 Adds simple native ServiceStream consumer API.
68d41b9547 Disable type inference: don't store initializer tokens
0c084022af Disable type inference: don't create a type inference engine
12085156c1 Disable type inference: types of initializing formals
48093f5f9d Revert "Add support for parsing simple nullable types"
c7e7cbddca Remove workaround for LSP spec issue
b9170ffb83 Add new "dartkp-bare-linux-release-x64" configuration to test_matrix.json
8c7be910d0 Support compilation with the trivial abstract value domain
c5fd11b5d6 Add support for parsing simple nullable types
6d4d3c6b07 Remove TrustTypeAnnotations
ecccc0d94e Fix some LSP TODOs, remove some redundant code, add comments
dcf24df2bb Shorten the script URI in stack traces for URI encoded scripts.
e92c7678a7 [vm, observatory] Respect requested tag order even when --profile-vm=false.
0fb5974ba0 Improve the error reporting when the same-named types are used as type arguments (issue 33946)
457222053a Remove two unused imports
80412dcf6a [vm/kernel] Accept URIs in --packages option if multi-root filesystem is used
b7a1eb4aea Simplify co19_2-dart2js status file to only track skips
02cdda28c5 bump to linter 0.1.76
4afb45f5b8 Change default target to "create_sdk".
666eee40c7 Updates to pase tuples in LSP spec
988a376803 [infra] Fix batch mode crashes uploading crash dumps.
d03b79178c [infra] Test suite filenames should match that suite's selector only.
5d8501a07e Integrated invalid_returns.md
c7e8a37cf3 Add a divider between the element description and docs in hovers
54d1118a66 Remove Loader.typeInferenceEngine
8dea395b18 isEligibleForTopLevelInference accounts for type inference disabled
472bf29904 Disable type inference: Don't generate shadow wrappers
f504d61c96 Generate optional parameter initializers in BodyBuilder
b46077332b Disable type inference: local function return types
6ec321f2b7 Sort classes topologically when checking for cycles
77889c10e3 [vm] Fix unmatched asyncLevel with retry() helper in socket tests.
5c916afad9 [testing] Stop ignoring flaky IE11 timeouts
52f7e9ed71 [VM] Ensure the start of the entrypoints is also 2-byte aligned
93306f5ec0 Add dartfix integration test
e54ae42106 Add more conditional expression parser tests
03549b5a17 [infra] Let tool/test.py fail if the configuration supplied with -n does not exist
91cd0b4b83 Test that e2e constant is check works, pass experiments around more
7d14785115 This relands "Load isolate from parent's kernel in Isolate.spawn calls.".
c91a245e30 Use ChangeWorkspace to limit where DartChangeBuilder(s) can edit.
f0babb648b [VM] status file for dartkp failure for issue 35419
d9c8f29b48 [vm, dbc] Remove bad assert from DBC deoptimization.
f96a7fbc7d Create AnalysisDriver using AnalysisContextCollectionImpl in pkg/analyzer_plugin tests.
fd4ae6eda6 Augment AST/element type matchers to include (almost) all types.
6146095f73 Make FindElement more self-consistent.
9de66d87b8 Revert support for parsing simple nullable types
162d0d12b0 Remove EngineTestCase.assertInstanceOf and extract ast/element TypeMatcher(s).
fa181d94ef [dart/compiler] Refactor negate/flip token utilities
5054079c7a [VM] Bare instructions - Part 6: Get rid of CODE_REG indirection in CallThroughCode/CallThroughFunction stubs
25851db73d [vm/bytecode] Replace InstanceCall instruction with InterfaceCall and DynamicCall.
e2007126eb Revert support for simple nullable type return value in generalized function type
4949f89ae4 Skip faulty test co19/LibTest/io/File/openRead_A02_t01
28f8c96abe [VM] Bare instructions - Part 5: Get rid of CODE_REG indirection in SwitchableCalls
f205292227 [VM] Bare instructions - Part 4: Add --use-bare-instructions flag to AOT compiler & runtime
9ec260fd8e Change completion tests to work in /home/test/.
2e3788898a [vm] Remove Dart_CreateNativeWrapperClass API.
6376482e20 Revert "Add support for prefixed nullable type"
08c386a33e [VM] Do not use the contents of the megamorphic miss code in stack_frame
8dd03bee13 Add specification of set literals.
e98701ea33 [fasta] Allow const constructors in mixin applications
07ae5ad066 Error for ambiguous set/map literals with too many type arguments
cdbb2a74a1 Reland [fasta] Invoke constructors of mixin applications in super invocations
a116759784 [vm] Fix super refs in non-synthetic constructors in mixin deduplication
78f913273b Fix link to 'getScripts'
87f309463a Stop using asynchronous async in Fasta
3e8b335af8 [vm] Adjust concurrent marker to re-enable code W^X.
a33cb92c4f [vm, bytecode] Fix memory leak in calls from compiled code to interpreted code.
80a6f4b5dd [dart/fuzzer] refactor lists into new file
d2578dee91 Mark language_2/deferred_optimized_test as flaky.
7720689931 Add support for prefixed nullable type
b9463d0719 Remove pkg:tuple from DEPS
f68ae70e8e [dartdevc] ensure all throws are wrapped in JS Error (#33331)
52030e8eac [vm/compiler] avoid literal null is non-nullable
28c78b9d46 Add an assertion to check consistency of ExperimentalFeature constants.
3a96ed8104 Update dartdoc version to 0.26.1.
9d99b4a5ba [Gardening] Update status file to workaround issue             https://github.com/dart-lang/sdk/issues/35405
042d0c0313 Extract DartChangeBuilder creation in assists and fixes.
bf528959af Proposed public API for the type system
cb8c0ab8f5 [vm] Remove MixinAppType VM class and VM code supporting type resolution.
14ff2110ce [vm] refactor native entry and native entry type arguments
0028491fdd Make package_build tests work on Windows
1f5c77c298 tools/generate_compile_commands.py conform to style guide
ddf3c5ee8c [vm/compiler] proper reason for deopt stub
76fb4d5b11 [Gardening] Skip co19 tests affected by race until pull request lands
2440a32461 [VM] Bare instructions - Part 3: Add support for building a PC -> Code mapping table
7a968ae283 Add a question mark to type annotations in the AST
b1294e7517 dart2js_tools: remove version - no plan to publish (yet)
0236c5c051 pkg:analyzer_fe_comparison, diagnostics, telemetry remove version info
b7fc0208b0 Add WorkspacePackage and various implementations, for determining whether two files are in the "same package."
ae3a33bd79 [vm/aot] Fix issues with multiple entry-points.
6a622d082e Make exception handling in code actions consistent
275ce70649 [infra] Fix test.py uploading non-existent dart2js core dumps.
288d5f0a2a [VM] Bare instructions - Part 2: Start relocating instructions in AOT mode
e4e77b9817 [VM] Bare instructions - Part 1: Add support for telling the image writer in which order instructions should be written
f9e5cfe07a [Gardening] Remove flakyness marker for dart/appjit_determinism_test
ec1dfa8716 Add @pragma('dart2js:disableFinal')
811cea75db Remove lingering references to async-async
ff0eaca1b0 remove package-root from -v -h
ab27830ee8 hint for duplicated lint rules
fc3153a4f0 [vm] Unskip isolate tests on sim* architecture.
95eed86c34 Unskip isolate hot-reload tests.
8ca8c2d881 Roll tcmalloc to e9ab4c53041ac62feefbbb076d326e9a77dd1567.
ca41d01170 [vm] Fix lookup of async variables by taking ctx_level into account.
0b1935ca70 [vm] Remove hash-by-address from the ObjectPool builder.
e15e8609aa [vm, gc] Fix merge mistake from 04941b5507666eabc1ac23027b124939a3794a03 that effectively disabled concurrent marking by setting the soft and hard allocation limits to be the same.
8bff3a9e20 Fix batch mode to re-create the analysis driver when the set of experiments has changed
11d081d115 Add support for simple nullable type return value in generalized function type
6bf4d2ab1a [vm] Do not suppress WER when running VM outside of our test suite.
4ed049d782 Revert "[fasta] Invoke constructors of mixin applications in super invocations"
b44f21e691 Add assists to LSP Code Actions
075ff39ed7 Attept to fix failing test on Windows
1ff82c5081 Update endFunctionType event to take questionMark token
15d65fb907 Add a doc listing the LSP protocol status/supported features
e3991780a5 Add code fixes to LSP code actions
7d4a6cc7e3 Change setup of capabilities in LSP tests to allow easier chaining
83c6f7695d [infra] Remove IE11 screenshot capability from test.py
8ae255d876 Improve regex for extracting request constants from LSP spec
825b1c0817 Corrected status of subtyping.md
a8493e1b50 Flip the default value of the Kernel syncAsync flag
a745f477dc Remove deprecation warnings from ddc
7d1ebf260a [fasta] Invoke constructors of mixin applications in super invocations
d118c7f94e Added changelog entry for instantiate-to-bound integration + commentary
526b11d28e [vm] Add doc for snapshot profiling.
8cb7ab9567 Ensure that Object doesn't have supertypes
1046bf66d4 Ensure patch parts know they're patches
67217f4ef8 Integration of i2b into dartLangSpec.tex
1c1a5a99ed Change LSP edit mapping to support multi-file edits
566ae2490d [test] Update async stepping tests to reflect the status quo.
0df81c42a7 fix options integration tests
bc8c7cf782 Add support for parsing simple nullable types
e2db9676d9 add asNonNullable() to existing type infos
ca70671e85 update linter io url
b0cca3e82d Attempt to fix the bots
2e3ed72293 Return a bad compiler result instead of rethrowing in ddk.
5632d62ad5 Record references for AssertInitializer.
6fe24162eb Implement downward inference for set literals
2d2ed59671 Set 'enclosingClass' for class members and type parameters.
295b749778 Remove unused import
a16f1bd67b [dart/fuzzer] Fix js execution mode specification
f9fb87558c Collect references for constructor initializers and redirectors.
3a4ca65f6b [gardening] Fix standalone_2/io/http_compression_test.
237fcba9b6 Support for FieldFormalParameter.
1337062779 Remove pkg:microlytics
e6aec46b5f Update LSP noEdits test to have imports that won't be removed as unused
2a85a3433e Update handleType event to take questionMark token
4d63202b53 [infra] Fix warning when pre-approving an already approved failure.
b924d754c5 Fix LSP Organize Imports so removing unused imports works
7d0823a97c Advertise the commands/code actions we support to the client
3f130fb9ff Don't call workspace/applyEdits for empty edits
abdd6ca0d1 Verify that we don't emit SyntheticExpressionJudgment
78b53ff6b2 [testing] Format logs with more distinctive separators
68889c97ae Rework the file system tests so that most tests are shared
3baab294c1 [gardening] Update 3xHEAD patch
6a99a9a85f [co19] DEPS updated
0e08c267c8 [infra] Add Windows support for gsutil.py.
f0d85bb914 Don't record references to the name of this node or the name of the enclosing class.
f6b5f9ce2e [vm] Add --gc_every to trigger major GC every N stack overflow checks.
54a47243e5 Fix for 35356 - and/or/xor
c0185716e3 Fix Analysis Server on Windows bot.
d8bd7d68b8 [vm] Fix bots after commit 5f36c5f9.
30896b87f1 [vm] Fix crash when enum initialization hits a stack overflow.
81de5ec21c [vm/compiler] Do not use UnboxedIntConverter on tagged.
5f36c5f9d8 [vm] Delete BoundedType class in VM.
5768e513f8 Rework analyzer representation of experimental flags to prepare for codegen.
bfb011ee14 Only enable set literals for the reference collector test that requires it.
79eb965d8f Replace FileContentOverlay with OverlayResourceProvider in AnalysisServer.
1f6a25e968 [vm] Roll boringssl to 702e2b6d3831486535e958f262a05c75a5cb312e.
49142b49e7 Revert "[gardening] mark sample_extension_test as error"
3875d8bfa2 Deprecate TypeSystem.isStrong
4463aa0038 Revert "[vm] Fix crash when enum initialization hits a stack overflow."
e59312dafa [vm] Fix crash when enum initialization hits a stack overflow.
89f299bee8 Add support for supplying simple edits for LSP workspace/applyEdits
679108ea7b [gardening] mark sample_extension_test as error
40be306fb0 [gardening] Always copy ICData prior to write.
644d924978 Add path validation for opening files
59780df33f Implement "Organize Imports" command
a957c4351a Add more tests for async*/await-for operations.
03730d9acc [infra] Fix test.dart error handling if there's no base build.
1e4b123e54 Delete DartType.isMalformed
be532c0fc5 Use AbstractBool in AbstractValueDomain and add TrivialAbstractValueDomain
e4df0c2fd8 Add implementation+tests for LSP "Sort Members" code action
4746e7b2b5 Record actual 'api' and 'impl' dependencies for most nodes.
fba5a58b47 Update 'samples/sample_extension' to Dart 2
3d6d1d1755 Use VersionConstraint in SdkConstraintVerifier.
c1a0c611c3 [vm/compiler] Add missing case for CP
b18de843b5 Don't link to analyzer_cli
f2d1858c2a Update dart_style to 1.2.2.
b5d2400d82 Always include members of Null in subtype access.
4191437ccc Revert "[vm] Fix crash when enum initialization hits a stack overflow."
499b5b23e1 [vm] Don't touch the PCMarker slot in the Dart profiler walker.
4288fe9ba7 Record references for all statements, tests.
c987c9e5a7 Propagate cached static types to inference and ssa
67b5c878b3 [vm] Fix crash when enum initialization hits a stack overflow.
d1d35db153 Record references for all expression types.
3e8d87b59d Include request and response subscription methods to the AnalysisServer interface.
5074dc9033 Make generate_files in the analysis server default to x64.
7d78f7caf9 Handle FutureOr in runtimeType analysis.
3cb3fd2b20 Move types/* to inferrer/*
b2d4a95cb0 [dart/fuzzer] Use 100 machines for DartFuzz tests
15673bc410 Move instantiation classes to separate file
007e386b13 [infra] Add progress information to test.dart and fix logs.
1a814793ce [infra] Add --silent-failures and --clean-exit to test.py.
921e62f1bf [vm] Introduce multiple entrypoints to AOT.
04b2b75d8c [Gardening] Remove inherently flaky async/timer_regress22626_test
089f098849 Auto generate more analyzer error codes
fb471c6cee fix gitignore for some git client
cd2e7680ed Corrected instantiate-to-bound.md.
09f2736d9a Remove support analyzer-use-fasta-parser from the test matrix.
85a30f8595 Measure time spent emitting source-maps
53ba7096e2 Record references in expressions.
2a39f63c2a Record deferred accesses in kernel world impacts and use it for splitting only under a flag.
a84863253c Re-apply "Add AnalysisDriver.resetUriResolution() and use it for analysis.reanalyze request."
3b65f0ded8 Update the analyzer error code auto generation tool to display a list of fasta error codes in the parser that are not yet auto generated.
1d77824482 Issue 25538. Fix for overriding invisible private members.
6d33d033db Cache prototype references while installing aliases
1b3e2ccdf6 Re-introduce StrongTypeSystemImpl because removing it was a breaking change
73a3c2cf5b Extract operatorFromCompoundAssignment() into public non-API.
cd94fce0fe Add ability for LSP server to send requests to (+ receive responses from) client
3e3f31b808 Reapply "[vm] Annotate longjmp-like functions with DART_NORETURN."
ebc9295c7e Partial implementation and tests for ReferenceCollector.
b5e294595a Remove analysis_server's pubspec.
08c4e96fc5 Keep track of document version numbers from the client
e173775a58 Tiny bit shorter $is/$as prefix
98fcc8e8dd Set up a new CommandHandler that can delegate to individual commands handlers
2bf29f6244 [kernel] Avoid reporting token position on InvalidExpression.
d8d8e222aa Support returning code actions for SortMembers/OrganizeUsings
8ea5ac12c0 [Gardening] Remove redundant --compiler=dartkb from test_matrix.json
c945715f8c [Infra] Make -n dartkb-... actually test.dart to use bytecode mode
2cdd29b516 Handle set literals in body builder.
44926fd572 Shadow node for set literals
05fb37a808 Add SetLiteral node to kernel.
378bc9179e tool to generate compile_commands.json for analysis servers
bc0df05d07 Update dartfix test on windows
e4cbeab852 Remove redundant compiler option from dartkb builders
25e38ebd60 [Gardening] Change tests to use default --sync-async behavior (this is what we care about), remove Crash status file marker
1207af99b8 [infra] Avoid printing options in reproduction commands which are implied by the named configuration
5451ac62e2 remove fasta parser status from the server status page
e566ca90b4 [vm/compiler] Fix AOT null comparison
41389f4c5b Add dartfix part file tests
60ed5f0960 [vm] Update Thread::TopErrorHandlerIsX to account for the interpreter.
2118fcf7b0 Rename StrongTypeSystemImpl
20b9b9a289 catch a few more error types in kernel mode of ddc
e4c83f8573 Rename the experiment flag used to enable set literals
36a7d18239 Update edit.dartfix to ignore sources specified in analysis_options excludes
d32254f13b [vm/compiler] Fix crash in AOT-debug (found with fuzzing)
21984a350d Implement evaluation for constant expressions that use the >>> operator
af081ddde2 [interpreter] Revert due to regression reported by golem.
78db20cc8f Rename to LibraryQualifiedName, Node, NodeKind.
b3b6a53cd3 Remove ForInJudgment
38d83f7637 getNode() accepts Library, so knows the URI.
c3968acd17 Include enclosing library URI and class into API token signatures.
adf595dc62 Revert "Record deferred accesses in kernel world impacts and use it for splitting."
07f43510a2 [vm] Fix some cases of dropped errors and confusion between Exceptions::PropagateError and LongJumpScope::Jump.
679a1a7867 [vm] Clean up sticky error accessors.
84420e1ae5 [vm] Roll version of pkg/linter forward in 3xH engine patch.
70e1517d98 Record deferred accesses in kernel world impacts and use it for splitting.
5a8ec41982 [dart2js] UnionTypeMask.disjointMasks should be a List
dd1f62cd55 Revert "Rollback to C++11."
9b5fcc9166 Fix conversion of class with type parameters to mixin (issue 35322)
831ab3580c [vm] Don't crash on illegal entry-point access.
afb8906699 [infra] Fix compare_results non-human output being null.
085ebcab58 [vm] Mark some service tests as slow.
12c650755b Update status file core corelib_2/uri_parse_test in DBC.
4264f3c619 Remove unused fasta error code mapping
1ca3f3d2cb [infra] Fix compare_results test name in human readable mode.
035bb3d04e Remove various shadow nodes related to labels
90aa12feed Build catch blocks in BodyBuilder
e1e3b78e3a [infra] Fix update_flakiness missing current_counter null check.
c18225d98c Implement guarded type promotion in dart2js
90c7cf254e [infra] Implement update_flakiness forgiveness and statistics.
1773006c96 Build for loops in BodyBuilder
4cd567b3a2 [infra] Add auditing to approve_results.
df8accc735 Merge analyzer branch into master
f3d088e2d7 Use VariableScope.parent instead of VariableScope.block
a28c29767d [dbc simulator] Partial revert due to regression reported by golem.
544c053eb0 Initial CL for fine-grained dependencies - Name, Symbol, Library and declared symbols.
abcf0a6867 Issue 35241. Fix for NPE when the referenced constant variable does not have initializer.
bb791ff34d Revert "[vm] Annotate longjmp-like functions with DART_NORETURN."
27907fed2d [vm] Annotate longjmp-like functions with DART_NORETURN.
e13b2e3227 Update dartdoc to v0.26.0
0177ee1d64 [vm] KernelLoader::FinishLoading can sometimes trigger nested class finalization.
670f9ab49b Merge commit '65401da92251a7318e3264b816ce0c4e14701751' into analyzer
7fbd67a3fc [gardening] Update status for incorrect co19 test
65401da922 [dart/fuzzer] fix bot setup
bfee7fa626 bump linter to 0.1.75
41e0ae9399 [dartdevc] fix libraries.yaml to mark dart:isolate unsupported
848d93c0b5 Improve parser recovery given superclass field initializer
f363c5fe79 Update AstBuilder to recover given superclass field initializer
66f81c30b1 [gardening] Increase allowed time difference in a test from 5s to 10s.
74aad1162e [interpreter and dbc simulator] Remove usage counter increment of icdata owner.
6905e57f8b Issue 35223. Skip setters that don't have exactly one parameter.
63fd8f63e6 Revert "Load isolate from parent's kernel in Isolate.spawn calls."
49517fb3e6 Fix SDK build on Mac.
c71a5279c5 Revert "Add more tests for async*/await-for operations."
531551c7f1 Remove trailing comma in json
352cff2fd3 Issue 35301. Update only files in context roots during rename.
bbe9333af5 [dart/fuzzer] Report stderr on non-output divergence
d3c3341b8a [dartdevc] fix conditional imports in kernel backend
e143a52531 Load isolate from parent's kernel in Isolate.spawn calls.
0a4873bb35 Merge commit '191a09f540ac0516c4088fb8454c693743be8b3f' into analyzer
4bda0fe427 Remove trailing comma from json
d6373525f7 [standalone] Remove dead Dart 1 loading code.
2a9780fde6 [gardening] Mark standalone_2/io/http_basic_test for the right issue
01da85ce7c Add flag to emit kernel immediately after invoking the CFE
af40a7e2d7 Improve regex to extract LSP request/notification methods
191a09f540 [infra] Add support for logs to tools/test.dart.
b35aebde1c Add --logs parameter to compare_results.dart, and output logs
3000e93024 Update status file for yet another combination.
f6852fa9c8 [gardening] Mark LibTest/collection/ListMixin/ListMixin_class_A01_t02 as ExtraSlow
2dbf91ff13 Add support for parsing Maps from the LSP spec
a0d576e6cd Add more tests for async*/await-for operations.
52183f2afa [infra] Implement 3-way comparison with approved_results in compare_results.
897f15d955 Update constant set literal tests.
00cec998f5 Integrated subtyping.md into dartLangSpec.tex
e7a048d12e Make constructors private
7ba67a0a74 Wrap various synthetic kernel nodes
e3793d8661 Use helper methods to handle SyntheticExpressionJudgment
170d5578c7 [vm/kernel] Move functionality of Fuchsia's compiler.dart into pkg/vm
f9ed759843 Bring in the latest dart_style.
43cd8ba822 Merge commit '4eeebc46cff4e47e6265e86f4774da103d060aa1' into analyzer
5ad8bf78e2 Add KPI::bytecode_component_ to raw_object_fields.cc
96dda6a516 Re-land "[vm/aot] Fill in names of properties in snapshot profile."
9f49b47823 [vm/bytecode] Revise representation of objects and strings in bytecode
aae0f7997d [vm/compiler] Express control dependence as data dependence.
0b66d91cd4 [vm] Adjust concurrent marker to re-enable code W^X.
4eeebc46cf [hhh] Patch flutter so it is compatible with latest analyzer
0a7cf2a513 Allow nulls for union values where the field can be null or undefined
179b96e796 Remove unnecessary awaits in LSP tests
2260758ffe [infra] Make --keep-generated-files work with -n option
64718ea369 Simplify control flow in ICData::FindFreeIndex.
7af0ba8dbf Merge commit '4088bb1302cebbb6922e1292037bc60127f1f852' into analyzer
8ca55acef5 Merge commit '6f5d6db9c237c3d52c65af4be59c0a631eaf2ff3' into analyzer
9a7f42d05a Merge commit 'dc346e6fdd89663388f8ae4e6767d6ece597c278' into analyzer
be529425d2 Prepare for a future breaking change to the UriResolver class.
7be1d77423 Remove invalid tests from set literal tests.
16cfb6c922 Remove TypeInferrerDisabled
f9ee5da8f8 Add BodyBuilder.legacyMode getter
cd6ecf19fa Clone metadata in BodyBuilder instead of type inference
4088bb1302 Remove prepareTopLevelInference from base builder API
cc003934fc Use modifiers to store some flags
7abe999437 Enable uploads from Dart SDK swarming builders
0fe6f76ffb Improve handling of duplicated declarations
6f5d6db9c2 Cherry-pick analyzer CHANGELOG and pubspec from analyzer-0.33 branch.
5b00611568 Revert "Add AnalysisDriver.resetUriResolution() and use it for analysis.reanalyze request."
dc346e6fdd Revert "[vm/aot] Fill in names of properties in snapshot profile."
465f8595ec [vm/aot] Fill in names of properties in snapshot profile.
2ca08ef2e1 [infra] Implement preapproval of failing tests in approve_results.
f72f07793b Handle null initializer, this is being hit internally when compiling large projects.
63770042aa Merge commit '80c23f87a3e3123d7e337c1fc8bc3b5ec49b34a0' into analyzer
80c23f87a3 Update more analyzer error codes to be generated
7f8e6f8bb6 Be more verbose in loops etc in kernel
20e819cbbe [gardening] Mark LibTest/io/FileSystemCreateEvent/isDirectory_A01_t06 flaky
17d322b62a Handle AmbiguousBuilder in computeRedirecteeType
5410bc4098 Fix rare crash in type inference engine
8db293ed70 Lazy VariableIndexer in ast_to_binary.dart
c45abca648 Get rid of double colons in override error messages.
8ab76a521a Use new type printer for bound errors on method calls.
e520f2480a Do UTF8 encoding slightly differently when serializing kernel
040ef6aabb [gardening] Lower core rlimit to 0 if test is expected to crash.
40dd503b3a [gardening] Mark LibTest/io/RawDatagramSocket/singleWhere_A03_t01 failing
3a52e7bc31 Avoid copying result arrays for nested types in type labeler.
ad62f21e5b Fix crash with multiple same-named redirecting constructors
85a6da1213 [Gardening] Attempt to make socket_bind test more robust by ignoring unrelated clients
0a2ed86935 Infer general flow through && and ||
1231244ede Add version information to SDK changes that have happened after 2.0.
c2bd36e94d Add --omit_platform as option to fasta.
45bf7e9906 validate deprecated lints
31e4c9de6e [vm] Remove dead pre-Observatory debugger code.
17a7f513c3 Fix up pubspec for pkg:compiler
440f190a34 Cleanup CompilerTask
0a05682d5b Cherry-pick 031e77eea11a16a5e486a3673549adbd68862c8e to the analyzer branch.
1d14b8a94e Prepare to publish analyzer 0.34.0.
bfcbd25102 [vm] Use decimal thread ids to match gdb and eu-stack.
6fbc7d27c4 [vm] Remove source-based loading APIs.
488d1f375c [vm] Make profiler bailout counters available over the VM service.
eb1153c546 Fix for override completion contributions for abstract void methods and setters.
73621c71b7 Cherry-pick CHANGELOG from analyzer-0.33 branch.
ec5b4bad99 Fix false positive for sdk constraints (issue 35290)
3428cc6dae Add AnalysisDriver.resetUriResolution() and use it for analysis.reanalyze request.
d9c6bc0316 Improvements to verbose timing data printing.
b72ca19f33 Merge commit 'c9aaa7a654b1cac1307c854ba38f4dc995c86f09' into analyzer
81abf9bb48 Merge commit '5bff334f84f5ce08cd7d10f9185ea150621aba1f' into analyzer
706776a14d Merge commit '80c4d3e3c70ba8d0dfcc3fd038f29a388652cf3b' into analyzer
c7dea39faa Fix analyzer CHANGELOG.
a354fd99a8 Add LSP support for flat symbol lists for older clients
031e77eea1 [infra] Update Clang toolchain and GN
c9aaa7a654 Re-formulation of type bound violation error messages
03a1fe30f5 De-duplicate some bound check code.
4427bb70bc Get rid of double colon notation for class members in messages.
820af6ba9e Test of type variable bound printing
c959bd98af Print origins of types in bullet points below error messages.
5198e49ffd Use new type labeler API in message generation.
aed186ad10 New printer for types and constants
c632e7cc6d Separate names of blacklisted core classes into their own file.
44f7295195 [VM] Free the current working directory string if we happen to re-initialize the VM
d93c19acb9 [Gardening] Update status file to extend test markers from Crash to Timeout (on MacOS)
56bccac775 Remove unused kernel/lib/application_root.dart
9c7bdf4aae Remove unused dependencies on logging and package_config
b52182ee14 Add LocalState to KernelTypeGraphBuilder
be5d0cca5c Remove sha1 impl from dart2js
ef419f68f9 Revert "[vm/compiler] Express control dependence as data dependence."
41f3d4326e [vm/compiler] Express control dependence as data dependence.
589a823888 Cherry-pick f02e7bb3745ace7edcda7905b2383f7da446acd7 to the analyzer branch
1d0c0559f6 Cherry-pick CHANGELOG from analyzer-0.33 branch.
03b7ade6b7 Relax front_end's pubspec SDK requirement
34d5751835 Move handlers into handlers/ folder + sort members
235da6f45d Rename AstNode.getAncestor by deprecating it and adding the new method (analyzer)
5bff334f84 Introduce replacement for AstNode.getAncestor (master)
65787a250e Use the experiment flag to enable scanning the >>> operator
80c4d3e3c7 Fix set literal optimization
de764dbec1 more set literal tests
6261ede840 Remove AnalysisServer.getResolvedCompilationUnit().
67c00eff46 Add basic support for hierarchical document symbols
581468fa63 [vm] Fix gcc build.
e9e70f0922 Reduce dependency on library spec from dart2js
9b65c81c03 Clear direct users of LibraryCycle on invalidate.
5d7786948c [infra] Add --keep-files flag to tools/test.py
854a7cfe15 Merge commit '43113760f2ea114c183f8965b0d48fbb7469dc7f' into analyzer
3f65406e2b Merge commit '232aa553fb97dbc2790b19363d85e2a7b74e6e27' into analyzer
fd53d061f0 Implement formatting provider for format-on-type
ff04743cdb Return errors instead of throwing
81a056c8a3 Cherry-pick CHANGELOG from analyzer-0.33 branch.
43113760f2 Use readAsBytesSync in standard_file_system.dart as it is faster
25f0c21c81 [infra] Fix approve_results reporting wrong number of changed tests
f780b6ea84 Remove obsolete log types from test.py
498994487b Cleanup of ast_to_binary
1ec63ec7d5 Only one source of truth for uriToSource
89936a2a0f Fix invalidating part specified via package uri via file uri
f5d1229081 Reland "[VM] Inline ClassID.getID() eagerly, extend pattern matching logic to recognize it, use it to special case ascii decoding"
c9a8589ba6 [VM] Remove dead code in precompiler
4aff8f93fb [VM] Ensure we handle devirtualized calls inside ApplyClassIds() as well
e25c744138 Clarify doc for Duration equals
be6593e5c6 Reduce params type from Either2<List<dynamic>, dynamic> to just dynamic
1c1539a9f7 Add tests that all requests work for unopen files
a3874044e7 [gardening] Restrict timeout status to MacOS.
801cea545d linter 0.1.73
44a9d0a0d6 Revert "Reland: [infra] Roll buildtools to c72a1c5aadde06505b7bb4641720880f3db28ff9"
82add824fd Merge commit 'db89c2d1ac3e8b6c6130cbb714c4e242e6fefc27' into analyzer
8a1ccf08c2 Merge commit 'f02e7bb3745ace7edcda7905b2383f7da446acd7' into analyzer
ad69aaef62 Reland: [infra] Roll buildtools to c72a1c5aadde06505b7bb4641720880f3db28ff9
232aa553fb Backport AnalysisSession.getResolvedLibrary()/ByElement().
2beed40848 Move Workspace and its implementations into src/workspace.
561d892d29 Only consider known files in AnalysisDriver.changeFile().
db89c2d1ac fix --kernel parsing when reading from parameter files, and dont reuse the compiler result
25262fe9b3 [gardening] Tests already marked as crashing or failing sometimes also time out.
3fdccc27ae Update analyzer SDK requirement
faafdb4b2f Revert "[VM] Inline ClassID.getID() eagerly, extend pattern matching logic to recognize it, use it to special case ascii decoding"
23d73687d2 Add logging of request in instrumentation log
8371240565 Reland https://dart-review.googlesource.com/c/sdk/+/84683
5949a3f984 Merge commit '5a54f0eb577f0f4a1708ddbd4f69bf70458ff647' into analyzer
829832d390 Minor LSP cleanup
8c69ec8c07 Revert "Reland: [infra] Roll buildtools to c72a1c5aadde06505b7bb4641720880f3db28ff9"
03ff950922 Reland: [infra] Roll buildtools to c72a1c5aadde06505b7bb4641720880f3db28ff9
92a8d5c193 Make it easier for lint rules to define their own lint codes
b505f0830a Split LocalsHandler.mergeDiamondFlow into mergeFlow and mergeDiamondFlow.
56dec98f0b Make LocalsHandler.locals and LocalsHandler.tryBlock private
418f2583bb Remove FieldInitializerScope from LocalsHandler
406d0b3e9c Remove unused code from LocalsHandler
82f9884289 Support exact class and this expression relations in StrongModeConstraint
d7cf6959bb [VM] Inline ClassID.getID() eagerly, extend pattern matching logic to recognize it, use it to special case ascii decoding
57ecf81f91 [fasta] Handle function types in arguments of mixin applications
e6e88c719c [gardening] Make standalone_2/io/http_loopback_test more robust.
a2ee414581 Support includeDeclarations for references request
797334a531 [fasta] Fix crashes in function type builders cloning
854c654c2d Fix LSP enum classes to use correct base types for value field
6ae01bacbe Tweak LSP test names
9cfab12d36 Reorganize imports to decouple dart2js_target.dart from dart2js
8d41ec30c0 Remove obsolete comment in status files.
61a1793574 Issue 35162. Include SDK version constraint into AnalysisOptions.
9906819fb7 Remove kernel isolate API from the public dart_api.h
e24b3b7772 [test] Further debugging for appjit_determinism_test.
52892f7c47 Add scanner and parser support for new >>> operator
b578e9ba6e Update vm_sources.gni, add a couple of missing file extensions
08c42ad75d Revert "[infra] Roll buildtools to c72a1c5aadde06505b7bb4641720880f3db28ff9"
f02e7bb374 Rework parseLiteralSetOrMapSuffix to remove expression lookahead
5a54f0eb57 Remove type checks that are already guaranteed
c2f1cd49a3 [infra] Roll buildtools to c72a1c5aadde06505b7bb4641720880f3db28ff9
01e85fa2e0 [vm/compiler] Replace simple induction analysis with new framework
0e275f123c Fix analyzer co19 status after d7ee7b951656014c6d7d25988682c80c4f57949d
9903d86d50 [infra] Apply flutter patches in flutter-analyze builds as well
cdd4adf467 [vm, kbc, dbc] Remove dependency on computed goto.
d31e83b909 [VM] Do simple block re-ordering in AOT by moving throwing blocks to the end
285f7ddb1b Switch to using constants for LSP method names
d7ee7b9516 Merge commit '880dfa0bca19b024bea57a20434da6f3f0fe9c87' into analyzer
3ad0571cf9 [fuchsia] Fixes for the Fuchsia build
10dac37103 [gardening] Marking slow tests as possible timeouts.
a61e10c7fa Change format tests to manually build an invalid string
880dfa0bca [vm/aot] Refactor clustered snapshot serialization to allow reflection of field names.
8fa1e010c4 Validate paths and offsets for all requests
682b9e3479 [gardening] Mark LibTest/io/RawDatagramSocket/close_A01_t01 failing
7f40d90544 Respect content formats when creating markup content
4a1983a1a8 Fix some TODOs and remove redundant test
78332742ac [gardening] Skip lib_2/async/timer_regress22626_test in reload-rollback + debug configuration
14d8f7c2da [gardening] Marking standalone_2/fragmentation_test Slow
d5ae2d573b Remove some unnecessary instance creations in ElementResolver
67472e59fb Remove an unused error code and the fix associated with it
60d6ca0de7 [vm] Fix v8_snapshot_profile_writer_test on Mac.
81cbb51292 Add --no-status flag to test.py, so the exit code does not depend on test status.
1891636db0 [gardening] Final attempt to fix apply.sh.
6300b7e0a0 [gardening] Fix apply.sh syntax (no spaces between variable name and =)
2fbc6b9a2e [gardening] Make apply.sh script force update git cache used by bots
1ed5f78e9c [gardening] Make apply.sh script fetch before trying to checkout.
c62af758ee [gardening] Switch apply.sh script to use bash instead of sh
01380ede49 [gardening] Expand 3xHEAD Flutter patch mechanism to support DEPS file changes.
92d2a70a9a [gardening] Update v8_snapshot_profile_writer_test status for dartkp-mac-release-simarm64
ba0222df78 [flutter] Update flutter-engine-linux 3xHEAD patch.
ed09a1e5f9 Update documentation of List.filled.
1cc8f36da2 [vm/compiler] Add VM Compiler Team WATCHLIST
bb4e2388b8 Use BasicInfo.resetIds
4a641a69fc [vm] Update status file for v8_snapshot_profile_writer_test.
02bf089ed5 Rough implementation of LSP References
ea56fe71f5 Fix definitions that cross files
8b01876d79 Rollback to C++11.
3cedae6f09 Change diagnostic.code to a simple String
df5ed5458f Move some LSP file-handling code into the file handler
8aa0af0654 [vm] Fix C++ incompatibility in V8SnapshotProfileWriter
a29f55e296 [VM] Mark tests slow after removing unsafe optimization for integer operation folding
0ef66e0f5c [VM] Add @pragma("vm:non-nullable-result-type") annotation
f43c76538b TBR: Added a missing status update to the int64.md feature specification.
cde4270e47 Re-land "[vm/aot] Snapshot size analysis."
5ced1f1cd2 add documentation to Function::parameter_types
48fee5f591 Update status file for receive_A01_t01 and where_A01_t01.
ad7fbb6dd7 [VM] Fix flow graph builder to not generate different code in unoptimized/optimized mode
2ebdf7c0f8 [VM] Ensure the _TypedListView.{offsetInBytes,length} fields are always initialized with _Smi's
614ae7f362 Integrated covariant parameter feature specs.
08a4e020b3 [VM] Get rid of duplicate return-type-cid information from method recognizer
dcc9f74a3c [kernel] Make instantiate-to-bound implementation in Kernel private
8b2458c97b [co19] DEPS and .status file update
94c325a889 Reland "[VM] Make @pragma annotations work generally"
4646e804dc Wrap last debugPath.add in assert
1eccfb864a Single handler per LSP message
f0b26ca685 Add offsets to kernel size breakdown
95d67393a8 Sort libraries to produce stable library cycle signatures.
edba6fbfaa [vm, gc] Add --force-evacuation flag to aid finding untracked pointers.
198d4d135f Infer an empty set literal when appropriate
24482b7514 Display enabled experiments on the status pages
9efa15fd7d Roll latest dart2js info to sdk repo
94d1d74076 Improve the exception message when a library can't be found in a summary.
fcde804eb4 [ VM / API ] Added Dart_IsTearOff to the Dart API.
c5601d7d47 Switch Parsed/ResolvedLibraryResultImpl to AnalysisSession.getParsed/ResolvedLibraryByElement().
e6800d9589 [vm] Disable bytecode generation while training kernel service
02f6395606 Cleanup library-loader: rename as kernel producer, remove some dependencies
e1ffe76a36 [vm] Replace StubEntry with Code handles.
e649ed1aa3 Merge commit 'c1daa3276566e48dac6f52742264578092c56a35' into analyzer
f3344f3c13 Update parser to report error for missing comma
c1daa32765 Fix some issues with the set literal tests
1ac2251706 Extract state handling from LSP server to separate handlers
4b51cea91b More docs for Timer.cancel()
0fded45406 Handle serialization with --dump-info
e62951fd3d Use assigned variables data to infer static types for effectively final locals.
e79cb0232f Fix return for Socket.setOption.
6f2fad87d9 Improve handling of errors
c8bc0a04c7 Extract common code to shared abstract base class
ae6f534188 Add fixes for SDK violation hint
1e186ad9cb [dartdevc] fix build times by only linking input sources
4255a012f8 Update analyzer pubspec to note dependency on pub_semver.
758e690b8d Enable the use of set literals in the analyzer unit tests
751d7ad2e2 [dartdevc] fix js_ast comma expression not generating parentheses
c165ef8a37 Ensure that lists and maps built by ExprBuilder have their staticType set.
5498e58e3c Remove unused GnWorkspace.findFile().
9ca6369ef5 [VM] Add locking around accessing constants arrays on scripts
83ba397368 [VM] Propagate [UnwindError]s directly instead of wrapping them in [LanguageError]s
8044e32fc5 [infra] Blacklist android device id in attempt to make buildbot builder more stable
099f48b1da [dartdevc] fix #33621, name collision due to inheriting JS statics
6e8fe410bb Mention libraries-spec in the changelog as well
c8372c00dc Patch hhh flutter flutter as follow-up to https://dart-review.googlesource.com/c/sdk/+/84688
59e17553f9 Upgrade call-instrumentation logic.
eceafa2df8 new “deprecated” lint maturity
ebeae74390 Update version before publishing
57a4f11b64 [gardening] Patch flutter engine post 0ca1c57
42d4269e06 Remove unused import
d29633f080 Add support for accessing the errors produced during constant evaluation
b607f65217 More dartfix tests
0ca1c57593 Reland "[VM] Remove unused flags"
fafb93ecbd Perform type analysis and inference for set literals
e8e072f87e Merge commit 'bf6ba5db9e2cfef7dad2b5283be93d589f4c7a5a' into analyzer
8cef3d978b Merge commit 'cb883470871af88a4ffba54f5d2cadf6eb7fa315' into analyzer
47b70aabee Merge commit '784ad29470c96a275fb788c26d3dae08e2766285' into analyzer
b0730135ff [VM] Use ArrayOfTuplesView for invocation dispatchers
257a6c8d2b Don't send error responses to $/ notifications/requests
064a7d89ce [vm/compiler] Add VM Compiler Team WATCHLIST
3bf6a550ea Add static type tests
d544a5d3b6 Compute variable allocation data during closure scope visitor.
601587b305 Make CapturedScopeBuilder child visits explicit
b943fa897c Move closure scope classes to ir/
bf6ba5db9e [infra] Update checked in SDKs to 2.2.0-dev.0.0
3f2b605b57 [gardening] Mark LibTest/io/Stdin/first_A04_t01 as flaky
a8c30d89d3 Add basic LSP definition handling
f6c41ac3bc Revert "[VM] Remove unused flags"
1a4cff1bd4 [VM] Remove unused flags
8422bf1a80 dart2js experiment: force parens around part file function
935103fd0f Update lookup-name tool to use the dart2js_mapping implementation.
be670f0362 [test] Update status files for tests with code objects newly-passing on 64-bit Windows.
75ce78a117 [ VM ] Uncomment test that was failing due to issue 33417
c6d9e040da Revert "[android] Override __cxa_demangle() in PRODUCT mode"
051643c0ed Hook up analyzer set literal logic to Fasta parser.
5c7f36e2f1 Add getParsed/ResolvedLibraryByUri() to AnalysisDriver and use in AnalysisSession.
0b46639335 Revert "Hide vmservice.cc behind PRODUCT macro."
86111b5543 [dart/fuzzer] Disable jit-opt modes
9b937f1226 Revert "[vm/aot] Snapshot size analysis."
a8b833750a Convert parser.dart to triple-slash comment style
715a78dfd1 [vm/compiler] Fine tune linear register allocation
90b694b93d Keep resynthesized annotations, even if partially unresolved.
713675bd35 Fix viewing generated code in Observatory on Windows
aa9d186fa5 More analyzer set literal tests
cb88347087 Port the SDK violation hint to the master branch
784ad29470 Update dartfix to check analysis server protocol version
06c89287b9 [vm/aot] Snapshot size analysis.
e4a5ab06e4 Update the SDK version for the front_end package
913cc2c73d [vm] Attribute time waiting for kernel isolate to LoadWait instead of VM.
1def1f5007 Hide vmservice.cc behind PRODUCT macro.
1ca0afe3e2 [VM] Add has_pragma bit to Field and populate it in the kernel loader
1a890ff07d [test] Dump symbol and type tables in determinism test.
de2e6a5543 Return ResultState.NOT_A_FILE for external libraries from getParsed/ResolvedLibrary().
032bfe0872 Use void rather than Object as a type argument when possible
899d1c15c7 Rollforward of the dart_io_api.h include change, with a fix for flutter.
4e8ffc06cf [gardening] re-enable tests disabled for https://github.com/dart-lang/sdk/issues/25649
47e11951a8 Add a missed test file
62c562ed7a [vm/bytecode] Encapsulate constant pool entry creation
3f03b07d53 Keep actual resynthesized constant expressions even when they are partially unresolved.
6d8e14c9db Merge commit 'f56fea3e6389727df2cae5c6feebcdd49437b12a' into analyzer
233dd29167 [vm/compiler] Make Slot::Get respect field's guarded_cid in AOT mode
f56fea3e63 Fix typo.
f9ce4729c5 [release] Update changelog with correct release date for 2.1.0
52d1a2b29b [release] Prepare changelog and version for 2.2.0-dev.0.0
0561ff2619 Add tests for trailing commas in set literals.
fd7b86e159 [toolchain] Update Windows VS toolchain to current Chromium one (18fbbd3).
7f63fcfe1f Add AstBuilder set literals support
a9abc64613 [vm/bytecode] Add context IDs to disambiguate accesses to distinct contexts
81d899ac30 [dart/fuzzer] Add mode to stress test JIT optimization
9677ec9a14 Fix parsing complex function expressions
32a6032f03 Merge commit 'ddbe22190c41b1993a3c93b67f1bfa57287348f8' into analyzer
920630acab Cherry-pick 19d9aa3337c36eb4409f815880297a85c1d5aab4 to analyzer branch.
7fafcec013 [vm/bytecode] Eliminate AssertBoolean instructions if condition is non-nullable
716c9dcde2 Add a hint when Future is imported from core in code targeted to run with an SDK prior to 2.1
b27d6078c2 Update getLibraryByUri() to more directly use external summaries, and check for part instead of library.
ddbe22190c [vm/compiler] Refactor representation of stores and loads in IL.
cdcb76e12b [gardening] Fix runtime/observatory/tests/service/udp_socket_service_test
bdf8b0bc79 [dart2js] Remove some clumbsy negations in generated JavaScript
dba295527b Merge commit '2535b1e0219779d9befe65d6c09275044b233bc2' into analyzer
01e0df71a8 Stop unnecessarily extending Object
aad435f45f [VM] Always bailout from constant evaluator if used on the background compiler
4e3e5711eb [dartdevc] fix kernel backend summary to module mapping
845310302d Revert "[VM] Add @pragma annotations on Field, make @pragma annotations work generally"
2de63ac01c [VM] Add @pragma annotations on Field, make @pragma annotations work generally
79b85ae944 Add --write_logs to set of blacklisted objects, so they do not appear on reproduction commands
2776108a8f Remove LocalsHandler._capturedAndBoxed
b981cbfff8 [vm] Adds a flag to dump dynamic bytecode traces in a debug build.
d5145ade2e Quick fix for the flutter build.
85986c818a First cut fasta parser support for set literals
ae04c6e63b [build] Remove unused configurations (dead since removal of dart_bootstrap).
61eea1f416 [VM runtime] Remove unused UnresolvedClass VM class.
53a47b25ff Standardize the #includes in runtime/include/*h.
e39fa29bd6 analysis_server_client API tweaks before publish
8414e2240c Don't report DEPRECATED_MEMBER_USE for deprecated mixins, top-level variables, and class fields.
338b123002 Change the order of enumerated values in UnlinkedExprOperation
a6665c1aa1 Fix for computing constant values of annotations with named constructors.
b12c125825 Export Future from dart:core in the mock sdk
6596a305fd Optimize VM List's setAll method.
23980a34a6 Fix a typo.
19d9aa3337 Add isLibraryByUri() to AnalysisDriver.
2535b1e021 [vm] Account for bytecode in profile processing and Observatory.
b14b19e13c Merge commit '9e3d3cf765ba3f761b2507950039bcdd2dd3ece8' into analyzer
14688305d4 Basic LSP signature help implementation
02fe9fabd8 [fuchsia] Add missing entrypoint annotation
733b53d971 [vm] Mark enum_private_test/01 as flaky.
9e3d3cf765 [VM] Use strict compare instruction only if receiver is nullable int
6914a86177 [vm] Update status file for enum_private_test/01.
f264a67d7f Basic completion support
bec2daba02 Cleanup analysis_server_client API
11af2a6406 [VM] Only use strict comparisons if the receiver has a numeric type
a454b5d564 [VM] Use redefinitions for strenghtening, prefer equality comparison over strict comparison
6b8aeb8898 [vm] Update status file for inference_enum_list_test.
bc2294c004 [infra] Shard reload builders
a1a38da58e [vm] Report an error when illegally accessing class through API in AOT mode.
aea0aadf41 [VM] Unify AOT optimizations for int/double's
a2dfa75371 [vm] Fix TypeParameter skipping logic in KernelLoader::LoadClass
4ae585ce86 Remove redundant fields from LocalsHandler
59949a9201 Use whereType in status_file_linter.dart
ed48cfeb47 [vm/bytecode] Support source positions when executing bytecode
737f44a8dd Add type argument count to type info in fasta parser
89719f4eab Cherry-pick changes from the analyzer-0.33 branch.
e58e3fbb55 Deprecate the "virtual" annotation
7d84c2e4b0 Serialization of set literals
4abe764b79 Update the changelog to include information about implicit-casts
5a14f9e619 Remove unnecessary setupPackages step.
5214afdb25 remove platform_configuration parser
5afc1ec336 [ VM / Observatory ] Fixed tests that were failing due to lack of sources in app_jitk mode
1b5996ae67 Merge commit '30c5b39d4e0e7672d05df6aebba73254dd7ee770' into analyzer
4c683215fc [vm/compiler] induction variable analysis
60f02dd2aa Re-enable the no-implicit-casts option
c8e95cf3b5 More lint-driven cleanup of Core libs
30c5b39d4e Integrated dynamic-members.md
8546a3a448 Revert accidental change to analyzer
1ade3b624f [infra] Switch cross-arm64 builder to use a single shard
207f06ca47 Typo fix in spec, just one spurious `{` removed.
eb4f9290de [infra] Add arm64 builders to the test matrix
d4f9d36dee Rewrite comments to refer to legacy mode instead of strong mode
98987d2342 Talk about legacy mode, not strong mode in perf tools
9931b77802 Rename strongMode constructor parameter of TypeSchemaEnvironment to legacyMode
6995ac59a8 Rename strongMode parameter of computeDefaultTypesForVariables to legacyMode
9b852e00a1 Update comment in body_builder.dart to say legacyMode
a0e08e1468 Rename strongMode parameter of getRedirectionTarget to legacyMode
7b020f5ae3 Rename InterfaceResolver.strongMode to legacyMode
573a7c543f Rename strongMode to legacyMode in test suite
d412f50f03 Rename TypeInferrerImpl.strongMode to legacyMode
e761241f9e Rename TypeInferenceEngine.strongMode to legacyMode
98e207d1d2 Rename KernelTarget.strongMode to legacyMode
10f210f83b Use factories for instantiating TypeInferrer
9fb16b9669 Use independent name for lazy-initializing static getter
f721d52163 [VM runtime] Introduce a new VM class Bytecode.
bea7be00e1 [test] Check for determinism from the kernel compiler.
8f7a0f400b [vm/bytecode] Emit source positions for bytecode instructions
8d5d8342af Short form install-tear-offs for common cases
bc03bd3805 Cleanup unused vars in VM patch files
da191665aa Issue 34709. Support generic type alias (AKA generic function type alias for now) in outline and completion.
fc2888982c Merge commit 'c92f9dce2357d0da7909c0c5f630ad59882ccf29' into analyzer
e2f99e4cee [vm] Update the profiler to account for the interpreter.
c04461c16d [vm/bytecode] Fix allocation of temporary locals for StaticSet
1d00a8a11f Add checking for errors related to set literals
c92f9dce23 Faster isNotEmpty on collections
fa800e270c Run "sort members" on LSP files
0a28d049c7 Revert "[infra] Add back generate_buildfiles.py to gclient hooks"
9ed26558f1 [infra] Add back generate_buildfiles.py to gclient hooks
86e1bb0cc7 Add a TokenType for the new shift operator (>>>)
d7ea36477f [VM] Invoke a new isolate notify callback on install if there are pending messages
600af11045 [VM] When disassembling dump functions seperately from non-function Code
8166908a03 Improve hovers to include the elementDescription
937e950fd2 Parse inline interfaces into types
f4a80a8466 [vm/bytecode] Fix entry point when optimized code is cleared but bytecode remains
3826a983b0 Add constant evaluation for lazy null-aware and lazy conditional expressions
802db45879 Increment AnalysisDriver.DATA_VERSION to invalidate current analysis results in Flutter HHH bot.
927f0937bd [infra] Add test.dart script for local testing.
f6128b48b6 Add constant evaluation for operators that now apply to bool as well as int
2079620a53 Issue 34733. Expand 'implicit-casts' controlled casts, and deprecate more of 'declaration-casts'.
6880bfca41 Cherry-pick 028ac521805dde0d71a1c97d1063b091fcddfe25 from analyzer to master.
7cf3382f8f Fix OpType.inXyzBody to actually being in body.
3c32b32d56 [vm/bytecode] Enable OSR for unoptimized code compiled from bytecode
c9ae39a9bf Issue 34741. Update error message to make it less unclear.
c60cff1d33 [dart/fuzzer] Introduce time-based test runs
8043e9851c [infra] Fix test matrix path logic in approve_results.
4534e3ea6d Use the constants defined in Experiments rather than hard coding them in multiple places
d53f8c8789 Issue 34735. Fix completion in ConstructorFieldInitializer expression.
9cf51348d4 Issue 33553. For get/set. Don't report ABSTRACT_SUPER_MEMBER_REFERENCE if the nominal superclass has noSuchMethod().
51f34ea580 Split up the tests for fixes related to lints
268993acb2 Provide support for is and as expressions
76e0d94616 [gardening] fix retries in socket_source_address_test
5147c0c6f1 Fix handling of UTF8 characters in LSP packets
83a05147ae [gardening] fix retries in socket_ipv6_test
3ae0dcaa18 Merge commit '5ef1465c55be601f601e1f565c9b9d2f94d76aff' into analyzer
5ef1465c55 [vm] Attach type to parameters on unchecked entry.
deaf5f4528 Only check bounds on recompiled libraries
bbb7cd9f4a Update type promotion expectations
4609fab2cc Revert "[test] Check for determinism from the kernel compiler."
c1db6b5336 Only track type promotion of locals
afe3e68841 Is-not doesn't lead to promotion
127852deed Prepare for matching expectations
0d051a4c65 Don't wrap no-argument sends
efcca56e36 Ensure stack is empty after top-level declarations
47cada07ac Start computing scopes for type promotion
552b25084e Generate NotificationHandler dartdoc and add server tests
74974952b9 Pass through method.requiredParameterCount
015f51c304 Fix windows sdk script
e33dee2a38 [gardening] Update status for issue #35128
a571855c8b [test] Check for determinism from the kernel compiler.
39297646bf [ Corelib / Tests ] Removed tests for Maps helper class, which no longer exists
d062a41404 Make resolution/codegen_world_builder into libraries
b484aada21 Remove library-root option - replace it with a libraries-spec option instead
9f9d7cdc7b Collapse JsKernelToElementMap hierarchy
5cb37ff5b8 Collapse KernelToElementMapImpl hierarchy
49a4a177ab Support explicit data files in --read-data and --write-data options
d74f272d78 [vm/bytecode] Enable optimized compilation if running with interpreter
1c1e013177 Introduce an interactive progress that uses a single line per phase
799cad6dfd Fix tests failing on Windows bot.
cb522bfcd2 [vm] Update Windows synchronization code to CONDITION_VARIABLEs and SRWLOCKs.
4b900fdcc5 [vm] Clarify timeline events for unoptimized background compilation, take 2
97bb5c0e1b Fix some TODOs in MethodInvocationResolver.
c44421dbba less verbose: remove progress form verbose mode, add a separate flag for it
a20986b299 [dart/fuzzer] Reduce number of runs to avoid timeouts
3a427f3294 Add an object representation for literal constant sets
a4dc8cd22e [vm/kernel/bytecode] Make sure bytecode instructions are aligned in kernel
27537b458a [VM] Ensure parameters from unchecked entrypoints have type attached
5db3314a86 [gardening] Update status for language_2/type_constants_test/none
4f5bc1ea22 Add test for constant type literals being valid in switch cases and constant maps.
f9d93f6d4e Revert "[vm] Clarify timeline events for unoptimized background compilation"
fa6a1684ef [vm] Introduce a separate VMTag for the interpreter.
136c013bea [vm] Clarify timeline events for unoptimized background compilation
0caf8dd8ed Add logs.json file to results from test.py, output of failing tests
037792876a Fix analysis hints/warnings in runtime/observatory
3a513641bb [vm] Don't ignore the return value of TypeArguments::Canonicalize.
bf26f2c022 [test] Update status for get_vm_timeline_rpc_test: Slow doesn't imply Pass.
94f93f788a [vm] Remove Dart scanner.
c6148ecba7 Add support for reading experimental options from the command-line
0bf9635a62 [gardening] Fix dart2 errors in socket_upgrade_to_secure_test.
8ca05c506f [vm/compiler] Whitelist byteswap inlining
3ee9f61c8d [vm/compiler] Fix bug in list inclusion test
56ea31b3d6 [vm/gardening] Mark get_vm_timeline_rpc_test as slow.
9cbd76d2bd Issue 35090. Concrete nominal superclasses of mixin applications provide at least noSuchMethod forwarders for super-invoked members.
f9ebf21297 Version 2.1.0-dev.9.4
a-siva added a commit to flutter/engine that referenced this issue Dec 26, 2018
* Roll version of Dart to d1817ddc91fd3aea061647b2e21860c47a5a5180

This is the first roll of Dart post Flutter 1.0 and it contains the
following changes :

d1817ddc91 Fix typo
074627f170 Clean up the fasta-related tests
0f523f2462 [infra] Adds pkg linux debug buildbot
5b3b1996a8 Integrated generalized-void.md into dartLangSpec.tex
2219b51b7e [gardening/flutter] Update 3xH patch to remove --sync-async flag from engine build file.
fbd014bc8a Revert "[gardening] remove sync-async flag use from flutter"
58fd3aaaf2 [gardening] remove sync-async flag use from flutter
da0216e92d [Kernel] add serializers for more simple expressions
336069a88e Update checked-in SDK to version 2.1.1-dev.0.1
f0377b2f92 Add support for parsing simple nullable types
aeb873187d [Kernel] Add text serializers for lists
d0c2cdcd4c [Kernel] Remove the syncAsync flag
26faa44d41 Fix error in incremental test
7bc2f82011 [dartdevc] implement dart:developer via console logging
2f26679409 [vm/reload] Reset isolate reload kernel library stats to zero.
8dea340fda [vm/kernel] Ensure alignment of metadata in case of concatenated kernel files
e6696267b2 [VM/GC] Fix field initialization bug.
dff358223e [VM/Runtime] Delete flag --sync-async and it's uses.
7a02066c30 [vm] Report kernel program stats for hot-reload request.
c0083a6e03 [VM/GC] Turn off concurrent marking during a reload.
4d8e48c339 Fix probot configuration to point to the "needs-info" label.
096e734b05 Replace //@NNBD with @pragma(analyzer:non-nullable*)
a80d93c81f Add global analyzer non-nullable flag
6d8d57c967 [vm/kernel] Cleanup use of legacyMode in pkg/vm/test
5fdab895a2 Use static types in inferrer
aec0aab155 [vm/compiler] Detect proper induction bounds
44a492f351 Send errors to LSP clients that request unsupported encodings
f01449e082 Add main method to rasta/issue_000035{,a} test cases
bbeee457e3 Add message parameter key for names
b195d435f3 Remove FieldBuilder.hasTypeInferredFromInitializer
e45e334548 Rename strong mode to legacy mode in package:kernel
2b766eef7e Don't try to access refactor result if it may be null due to being cancelled
7280ca87a0 LSP requests must always be responded to, even if optional
9d77f18784 [Kernel] Serialize logical expressions
1172c36c87 [co19] DEPS updated
091e38afcb [Kernel] Implement more text serialization
9e48cc7f25 Adjust specification of type tests to include promotion to X & S
ff44e27c5a Implement text serialization of strings
cc5c78cfd2 Clean up of static semantics check for redirecting factories.
9611f8bd99 [vm] Ensure ReadConstantTable works if no libraries in the kernel file.
958cad66c6 Refactor parser insertParens callsites
a862e8645a Remove docs/language/informal/subtyping.md, which is now in the language repo
f69aabdb62 Move the check for INVALID_SEALED to the BestPracticesVerifier
ac506a9d92 Check for @immutable on mixin application. Fixes #35458
9c8d627347 [vm interpreter] Remove intrinsics code as 'Intrinsic' bytecode is not used.
5a0dd76be0 #35222 Return null and Print Error with invalid UTF8 input
2a323d6afe Fix adding implicit casts when the target method is in a superclass.
a94137136f [vm] Propagate failure to instantiate bogus signature to optimizing compiler.
1a260925ef [vm] Unify CanonicalType and DeclarationType on 'Class' VM class.
de65d6892a Remove legacyMode from type inference
cbe30dc0d5 Remove Target.disableTypeInference
bf5ae2215b Store token in ImplicitType
a6e37888ee Merge legacy and disable inference modes
aa57aab82d Update expectations for legacy/statements
141fd9e426 Disable type inference: override checks
0df70ab15b Special type for signalling missing type arguments on literals
1ce14103e8 Remove MapEntryJudgement
612b6884c4 Split the text serializer into libraries
4283735fa1 First pieces of Kernel text serialization
c0b5a28417 Refactor Parser.checkFormals
278299c73b Ensure variable holder is a fast-mode object
2bd60aa109 Clean up uses of DartType.flattenFutures
6ece9f910c Prepare to publish analyzer version 0.34.1.
8905876e82 Create a double value from an int literal when it was promoted
2fc5a23dd5 [vm/kernel] Enable sync-async in pkg/vm tests
b1c963c84b Load kernel files in reverse order to accommodate topological order that pub build_runner produces.
6c2d8bc8c1 Record getter and setter names in the minified-name table
c52ff42c55 Add TokenStreamGhostWriter for parser lookahead
37bf87b9bf Use ChangeBuilder, not DartChangeBuilder to update pubspec file.
554f0c9d36 Clean up the use of the experimental flags in tests
62850bf967 update pubspec version
b4a7255684 Issue 35438. When no linked library, fill also _resynthesizedUnits when creating a synthetic library.
f8a680e511 Revert "Remove kernel isolate API from the public dart_api.h"
b2d6a2327c Convert two uses of the old type algebra API to the new
47fec6ce00 Make capacity check and usage increase atomic.
f94aa6e329 Make the internal TypeSystem implement the public TypeSystem
8535d0641a [vm] Workaround for failure to instantiate bogus type in optimizing compiler.
bfc8ba1459 Update dartfix SDK constraints
78fb462332 [vm] documentation of TypeArguments vs arguments
0e34af62d2 [Gardening] Skip standalone_2/io/test_runner_test (not relevant for AOT)
7840675171 [vm] Fix vm/cc/ICDataTest: use release-store/acquire-load for array of ICData objects.
4163478f9b Update AstBuilder to build AST with nullable types
a9c1c056a7 Use the first two key characters for sharding in FileByteStore.
570205c2b8 Unwrap OverlayResourceProvider in createByteStore().
01a9c1bd11 Adds simple native ServiceStream consumer API.
68d41b9547 Disable type inference: don't store initializer tokens
0c084022af Disable type inference: don't create a type inference engine
12085156c1 Disable type inference: types of initializing formals
48093f5f9d Revert "Add support for parsing simple nullable types"
c7e7cbddca Remove workaround for LSP spec issue
b9170ffb83 Add new "dartkp-bare-linux-release-x64" configuration to test_matrix.json
8c7be910d0 Support compilation with the trivial abstract value domain
c5fd11b5d6 Add support for parsing simple nullable types
6d4d3c6b07 Remove TrustTypeAnnotations
ecccc0d94e Fix some LSP TODOs, remove some redundant code, add comments
dcf24df2bb Shorten the script URI in stack traces for URI encoded scripts.
e92c7678a7 [vm, observatory] Respect requested tag order even when --profile-vm=false.
0fb5974ba0 Improve the error reporting when the same-named types are used as type arguments (issue 33946)
457222053a Remove two unused imports
80412dcf6a [vm/kernel] Accept URIs in --packages option if multi-root filesystem is used
b7a1eb4aea Simplify co19_2-dart2js status file to only track skips
02cdda28c5 bump to linter 0.1.76
4afb45f5b8 Change default target to "create_sdk".
666eee40c7 Updates to pase tuples in LSP spec
988a376803 [infra] Fix batch mode crashes uploading crash dumps.
d03b79178c [infra] Test suite filenames should match that suite's selector only.
5d8501a07e Integrated invalid_returns.md
c7e8a37cf3 Add a divider between the element description and docs in hovers
54d1118a66 Remove Loader.typeInferenceEngine
8dea395b18 isEligibleForTopLevelInference accounts for type inference disabled
472bf29904 Disable type inference: Don't generate shadow wrappers
f504d61c96 Generate optional parameter initializers in BodyBuilder
b46077332b Disable type inference: local function return types
6ec321f2b7 Sort classes topologically when checking for cycles
77889c10e3 [vm] Fix unmatched asyncLevel with retry() helper in socket tests.
5c916afad9 [testing] Stop ignoring flaky IE11 timeouts
52f7e9ed71 [VM] Ensure the start of the entrypoints is also 2-byte aligned
93306f5ec0 Add dartfix integration test
e54ae42106 Add more conditional expression parser tests
03549b5a17 [infra] Let tool/test.py fail if the configuration supplied with -n does not exist
91cd0b4b83 Test that e2e constant is check works, pass experiments around more
7d14785115 This relands "Load isolate from parent's kernel in Isolate.spawn calls.".
c91a245e30 Use ChangeWorkspace to limit where DartChangeBuilder(s) can edit.
f0babb648b [VM] status file for dartkp failure for issue 35419
d9c8f29b48 [vm, dbc] Remove bad assert from DBC deoptimization.
f96a7fbc7d Create AnalysisDriver using AnalysisContextCollectionImpl in pkg/analyzer_plugin tests.
fd4ae6eda6 Augment AST/element type matchers to include (almost) all types.
6146095f73 Make FindElement more self-consistent.
9de66d87b8 Revert support for parsing simple nullable types
162d0d12b0 Remove EngineTestCase.assertInstanceOf and extract ast/element TypeMatcher(s).
fa181d94ef [dart/compiler] Refactor negate/flip token utilities
5054079c7a [VM] Bare instructions - Part 6: Get rid of CODE_REG indirection in CallThroughCode/CallThroughFunction stubs
25851db73d [vm/bytecode] Replace InstanceCall instruction with InterfaceCall and DynamicCall.
e2007126eb Revert support for simple nullable type return value in generalized function type
4949f89ae4 Skip faulty test co19/LibTest/io/File/openRead_A02_t01
28f8c96abe [VM] Bare instructions - Part 5: Get rid of CODE_REG indirection in SwitchableCalls
f205292227 [VM] Bare instructions - Part 4: Add --use-bare-instructions flag to AOT compiler & runtime
9ec260fd8e Change completion tests to work in /home/test/.
2e3788898a [vm] Remove Dart_CreateNativeWrapperClass API.
6376482e20 Revert "Add support for prefixed nullable type"
08c386a33e [VM] Do not use the contents of the megamorphic miss code in stack_frame
8dd03bee13 Add specification of set literals.
e98701ea33 [fasta] Allow const constructors in mixin applications
07ae5ad066 Error for ambiguous set/map literals with too many type arguments
cdbb2a74a1 Reland [fasta] Invoke constructors of mixin applications in super invocations
a116759784 [vm] Fix super refs in non-synthetic constructors in mixin deduplication
78f913273b Fix link to 'getScripts'
87f309463a Stop using asynchronous async in Fasta
3e8b335af8 [vm] Adjust concurrent marker to re-enable code W^X.
a33cb92c4f [vm, bytecode] Fix memory leak in calls from compiled code to interpreted code.
80a6f4b5dd [dart/fuzzer] refactor lists into new file
d2578dee91 Mark language_2/deferred_optimized_test as flaky.
7720689931 Add support for prefixed nullable type
b9463d0719 Remove pkg:tuple from DEPS
f68ae70e8e [dartdevc] ensure all throws are wrapped in JS Error (#33331)
52030e8eac [vm/compiler] avoid literal null is non-nullable
28c78b9d46 Add an assertion to check consistency of ExperimentalFeature constants.
3a96ed8104 Update dartdoc version to 0.26.1.
9d99b4a5ba [Gardening] Update status file to workaround issue             https://github.com/dart-lang/sdk/issues/35405
042d0c0313 Extract DartChangeBuilder creation in assists and fixes.
bf528959af Proposed public API for the type system
cb8c0ab8f5 [vm] Remove MixinAppType VM class and VM code supporting type resolution.
14ff2110ce [vm] refactor native entry and native entry type arguments
0028491fdd Make package_build tests work on Windows
1f5c77c298 tools/generate_compile_commands.py conform to style guide
ddf3c5ee8c [vm/compiler] proper reason for deopt stub
76fb4d5b11 [Gardening] Skip co19 tests affected by race until pull request lands
2440a32461 [VM] Bare instructions - Part 3: Add support for building a PC -> Code mapping table
7a968ae283 Add a question mark to type annotations in the AST
b1294e7517 dart2js_tools: remove version - no plan to publish (yet)
0236c5c051 pkg:analyzer_fe_comparison, diagnostics, telemetry remove version info
b7fc0208b0 Add WorkspacePackage and various implementations, for determining whether two files are in the "same package."
ae3a33bd79 [vm/aot] Fix issues with multiple entry-points.
6a622d082e Make exception handling in code actions consistent
275ce70649 [infra] Fix test.py uploading non-existent dart2js core dumps.
288d5f0a2a [VM] Bare instructions - Part 2: Start relocating instructions in AOT mode
e4e77b9817 [VM] Bare instructions - Part 1: Add support for telling the image writer in which order instructions should be written
f9e5cfe07a [Gardening] Remove flakyness marker for dart/appjit_determinism_test
ec1dfa8716 Add @pragma('dart2js:disableFinal')
811cea75db Remove lingering references to async-async
ff0eaca1b0 remove package-root from -v -h
ab27830ee8 hint for duplicated lint rules
fc3153a4f0 [vm] Unskip isolate tests on sim* architecture.
95eed86c34 Unskip isolate hot-reload tests.
8ca8c2d881 Roll tcmalloc to e9ab4c53041ac62feefbbb076d326e9a77dd1567.
ca41d01170 [vm] Fix lookup of async variables by taking ctx_level into account.
0b1935ca70 [vm] Remove hash-by-address from the ObjectPool builder.
e15e8609aa [vm, gc] Fix merge mistake from 04941b5507666eabc1ac23027b124939a3794a03 that effectively disabled concurrent marking by setting the soft and hard allocation limits to be the same.
8bff3a9e20 Fix batch mode to re-create the analysis driver when the set of experiments has changed
11d081d115 Add support for simple nullable type return value in generalized function type
6bf4d2ab1a [vm] Do not suppress WER when running VM outside of our test suite.
4ed049d782 Revert "[fasta] Invoke constructors of mixin applications in super invocations"
b44f21e691 Add assists to LSP Code Actions
075ff39ed7 Attept to fix failing test on Windows
1ff82c5081 Update endFunctionType event to take questionMark token
15d65fb907 Add a doc listing the LSP protocol status/supported features
e3991780a5 Add code fixes to LSP code actions
7d4a6cc7e3 Change setup of capabilities in LSP tests to allow easier chaining
83c6f7695d [infra] Remove IE11 screenshot capability from test.py
8ae255d876 Improve regex for extracting request constants from LSP spec
825b1c0817 Corrected status of subtyping.md
a8493e1b50 Flip the default value of the Kernel syncAsync flag
a745f477dc Remove deprecation warnings from ddc
7d1ebf260a [fasta] Invoke constructors of mixin applications in super invocations
d118c7f94e Added changelog entry for instantiate-to-bound integration + commentary
526b11d28e [vm] Add doc for snapshot profiling.
8cb7ab9567 Ensure that Object doesn't have supertypes
1046bf66d4 Ensure patch parts know they're patches
67217f4ef8 Integration of i2b into dartLangSpec.tex
1c1a5a99ed Change LSP edit mapping to support multi-file edits
566ae2490d [test] Update async stepping tests to reflect the status quo.
0df81c42a7 fix options integration tests
bc8c7cf782 Add support for parsing simple nullable types
e2db9676d9 add asNonNullable() to existing type infos
ca70671e85 update linter io url
b0cca3e82d Attempt to fix the bots
2e3ed72293 Return a bad compiler result instead of rethrowing in ddk.
5632d62ad5 Record references for AssertInitializer.
6fe24162eb Implement downward inference for set literals
2d2ed59671 Set 'enclosingClass' for class members and type parameters.
295b749778 Remove unused import
a16f1bd67b [dart/fuzzer] Fix js execution mode specification
f9fb87558c Collect references for constructor initializers and redirectors.
3a4ca65f6b [gardening] Fix standalone_2/io/http_compression_test.
237fcba9b6 Support for FieldFormalParameter.
1337062779 Remove pkg:microlytics
e6aec46b5f Update LSP noEdits test to have imports that won't be removed as unused
2a85a3433e Update handleType event to take questionMark token
4d63202b53 [infra] Fix warning when pre-approving an already approved failure.
b924d754c5 Fix LSP Organize Imports so removing unused imports works
7d0823a97c Advertise the commands/code actions we support to the client
3f130fb9ff Don't call workspace/applyEdits for empty edits
abdd6ca0d1 Verify that we don't emit SyntheticExpressionJudgment
78b53ff6b2 [testing] Format logs with more distinctive separators
68889c97ae Rework the file system tests so that most tests are shared
3baab294c1 [gardening] Update 3xHEAD patch
6a99a9a85f [co19] DEPS updated
0e08c267c8 [infra] Add Windows support for gsutil.py.
f0d85bb914 Don't record references to the name of this node or the name of the enclosing class.
f6b5f9ce2e [vm] Add --gc_every to trigger major GC every N stack overflow checks.
54a47243e5 Fix for 35356 - and/or/xor
c0185716e3 Fix Analysis Server on Windows bot.
d8bd7d68b8 [vm] Fix bots after commit 5f36c5f9.
30896b87f1 [vm] Fix crash when enum initialization hits a stack overflow.
81de5ec21c [vm/compiler] Do not use UnboxedIntConverter on tagged.
5f36c5f9d8 [vm] Delete BoundedType class in VM.
5768e513f8 Rework analyzer representation of experimental flags to prepare for codegen.
bfb011ee14 Only enable set literals for the reference collector test that requires it.
79eb965d8f Replace FileContentOverlay with OverlayResourceProvider in AnalysisServer.
1f6a25e968 [vm] Roll boringssl to 702e2b6d3831486535e958f262a05c75a5cb312e.
49142b49e7 Revert "[gardening] mark sample_extension_test as error"
3875d8bfa2 Deprecate TypeSystem.isStrong
4463aa0038 Revert "[vm] Fix crash when enum initialization hits a stack overflow."
e59312dafa [vm] Fix crash when enum initialization hits a stack overflow.
89f299bee8 Add support for supplying simple edits for LSP workspace/applyEdits
679108ea7b [gardening] mark sample_extension_test as error
40be306fb0 [gardening] Always copy ICData prior to write.
644d924978 Add path validation for opening files
59780df33f Implement "Organize Imports" command
a957c4351a Add more tests for async*/await-for operations.
03730d9acc [infra] Fix test.dart error handling if there's no base build.
1e4b123e54 Delete DartType.isMalformed
be532c0fc5 Use AbstractBool in AbstractValueDomain and add TrivialAbstractValueDomain
e4df0c2fd8 Add implementation+tests for LSP "Sort Members" code action
4746e7b2b5 Record actual 'api' and 'impl' dependencies for most nodes.
fba5a58b47 Update 'samples/sample_extension' to Dart 2
3d6d1d1755 Use VersionConstraint in SdkConstraintVerifier.
c1a0c611c3 [vm/compiler] Add missing case for CP
b18de843b5 Don't link to analyzer_cli
f2d1858c2a Update dart_style to 1.2.2.
b5d2400d82 Always include members of Null in subtype access.
4191437ccc Revert "[vm] Fix crash when enum initialization hits a stack overflow."
499b5b23e1 [vm] Don't touch the PCMarker slot in the Dart profiler walker.
4288fe9ba7 Record references for all statements, tests.
c987c9e5a7 Propagate cached static types to inference and ssa
67b5c878b3 [vm] Fix crash when enum initialization hits a stack overflow.
d1d35db153 Record references for all expression types.
3e8d87b59d Include request and response subscription methods to the AnalysisServer interface.
5074dc9033 Make generate_files in the analysis server default to x64.
7d78f7caf9 Handle FutureOr in runtimeType analysis.
3cb3fd2b20 Move types/* to inferrer/*
b2d4a95cb0 [dart/fuzzer] Use 100 machines for DartFuzz tests
15673bc410 Move instantiation classes to separate file
007e386b13 [infra] Add progress information to test.dart and fix logs.
1a814793ce [infra] Add --silent-failures and --clean-exit to test.py.
921e62f1bf [vm] Introduce multiple entrypoints to AOT.
04b2b75d8c [Gardening] Remove inherently flaky async/timer_regress22626_test
089f098849 Auto generate more analyzer error codes
fb471c6cee fix gitignore for some git client
cd2e7680ed Corrected instantiate-to-bound.md.
09f2736d9a Remove support analyzer-use-fasta-parser from the test matrix.
85a30f8595 Measure time spent emitting source-maps
53ba7096e2 Record references in expressions.
2a39f63c2a Record deferred accesses in kernel world impacts and use it for splitting only under a flag.
a84863253c Re-apply "Add AnalysisDriver.resetUriResolution() and use it for analysis.reanalyze request."
3b65f0ded8 Update the analyzer error code auto generation tool to display a list of fasta error codes in the parser that are not yet auto generated.
1d77824482 Issue 25538. Fix for overriding invisible private members.
6d33d033db Cache prototype references while installing aliases
1b3e2ccdf6 Re-introduce StrongTypeSystemImpl because removing it was a breaking change
73a3c2cf5b Extract operatorFromCompoundAssignment() into public non-API.
cd94fce0fe Add ability for LSP server to send requests to (+ receive responses from) client
3e3f31b808 Reapply "[vm] Annotate longjmp-like functions with DART_NORETURN."
ebc9295c7e Partial implementation and tests for ReferenceCollector.
b5e294595a Remove analysis_server's pubspec.
08c4e96fc5 Keep track of document version numbers from the client
e173775a58 Tiny bit shorter $is/$as prefix
98fcc8e8dd Set up a new CommandHandler that can delegate to individual commands handlers
2bf29f6244 [kernel] Avoid reporting token position on InvalidExpression.
d8d8e222aa Support returning code actions for SortMembers/OrganizeUsings
8ea5ac12c0 [Gardening] Remove redundant --compiler=dartkb from test_matrix.json
c945715f8c [Infra] Make -n dartkb-... actually test.dart to use bytecode mode
2cdd29b516 Handle set literals in body builder.
44926fd572 Shadow node for set literals
05fb37a808 Add SetLiteral node to kernel.
378bc9179e tool to generate compile_commands.json for analysis servers
bc0df05d07 Update dartfix test on windows
e4cbeab852 Remove redundant compiler option from dartkb builders
25e38ebd60 [Gardening] Change tests to use default --sync-async behavior (this is what we care about), remove Crash status file marker
1207af99b8 [infra] Avoid printing options in reproduction commands which are implied by the named configuration
5451ac62e2 remove fasta parser status from the server status page
e566ca90b4 [vm/compiler] Fix AOT null comparison
41389f4c5b Add dartfix part file tests
60ed5f0960 [vm] Update Thread::TopErrorHandlerIsX to account for the interpreter.
2118fcf7b0 Rename StrongTypeSystemImpl
20b9b9a289 catch a few more error types in kernel mode of ddc
e4c83f8573 Rename the experiment flag used to enable set literals
36a7d18239 Update edit.dartfix to ignore sources specified in analysis_options excludes
d32254f13b [vm/compiler] Fix crash in AOT-debug (found with fuzzing)
21984a350d Implement evaluation for constant expressions that use the >>> operator
af081ddde2 [interpreter] Revert due to regression reported by golem.
78db20cc8f Rename to LibraryQualifiedName, Node, NodeKind.
b3b6a53cd3 Remove ForInJudgment
38d83f7637 getNode() accepts Library, so knows the URI.
c3968acd17 Include enclosing library URI and class into API token signatures.
adf595dc62 Revert "Record deferred accesses in kernel world impacts and use it for splitting."
07f43510a2 [vm] Fix some cases of dropped errors and confusion between Exceptions::PropagateError and LongJumpScope::Jump.
679a1a7867 [vm] Clean up sticky error accessors.
84420e1ae5 [vm] Roll version of pkg/linter forward in 3xH engine patch.
70e1517d98 Record deferred accesses in kernel world impacts and use it for splitting.
5a8ec41982 [dart2js] UnionTypeMask.disjointMasks should be a List
dd1f62cd55 Revert "Rollback to C++11."
9b5fcc9166 Fix conversion of class with type parameters to mixin (issue 35322)
831ab3580c [vm] Don't crash on illegal entry-point access.
afb8906699 [infra] Fix compare_results non-human output being null.
085ebcab58 [vm] Mark some service tests as slow.
12c650755b Update status file core corelib_2/uri_parse_test in DBC.
4264f3c619 Remove unused fasta error code mapping
1ca3f3d2cb [infra] Fix compare_results test name in human readable mode.
035bb3d04e Remove various shadow nodes related to labels
90aa12feed Build catch blocks in BodyBuilder
e1e3b78e3a [infra] Fix update_flakiness missing current_counter null check.
c18225d98c Implement guarded type promotion in dart2js
90c7cf254e [infra] Implement update_flakiness forgiveness and statistics.
1773006c96 Build for loops in BodyBuilder
4cd567b3a2 [infra] Add auditing to approve_results.
df8accc735 Merge analyzer branch into master
f3d088e2d7 Use VariableScope.parent instead of VariableScope.block
a28c29767d [dbc simulator] Partial revert due to regression reported by golem.
544c053eb0 Initial CL for fine-grained dependencies - Name, Symbol, Library and declared symbols.
abcf0a6867 Issue 35241. Fix for NPE when the referenced constant variable does not have initializer.
bb791ff34d Revert "[vm] Annotate longjmp-like functions with DART_NORETURN."
27907fed2d [vm] Annotate longjmp-like functions with DART_NORETURN.
e13b2e3227 Update dartdoc to v0.26.0
0177ee1d64 [vm] KernelLoader::FinishLoading can sometimes trigger nested class finalization.
670f9ab49b Merge commit '65401da92251a7318e3264b816ce0c4e14701751' into analyzer
7fbd67a3fc [gardening] Update status for incorrect co19 test
65401da922 [dart/fuzzer] fix bot setup
bfee7fa626 bump linter to 0.1.75
41e0ae9399 [dartdevc] fix libraries.yaml to mark dart:isolate unsupported
848d93c0b5 Improve parser recovery given superclass field initializer
f363c5fe79 Update AstBuilder to recover given superclass field initializer
66f81c30b1 [gardening] Increase allowed time difference in a test from 5s to 10s.
74aad1162e [interpreter and dbc simulator] Remove usage counter increment of icdata owner.
6905e57f8b Issue 35223. Skip setters that don't have exactly one parameter.
63fd8f63e6 Revert "Load isolate from parent's kernel in Isolate.spawn calls."
49517fb3e6 Fix SDK build on Mac.
c71a5279c5 Revert "Add more tests for async*/await-for operations."
531551c7f1 Remove trailing comma in json
352cff2fd3 Issue 35301. Update only files in context roots during rename.
bbe9333af5 [dart/fuzzer] Report stderr on non-output divergence
d3c3341b8a [dartdevc] fix conditional imports in kernel backend
e143a52531 Load isolate from parent's kernel in Isolate.spawn calls.
0a4873bb35 Merge commit '191a09f540ac0516c4088fb8454c693743be8b3f' into analyzer
4bda0fe427 Remove trailing comma from json
d6373525f7 [standalone] Remove dead Dart 1 loading code.
2a9780fde6 [gardening] Mark standalone_2/io/http_basic_test for the right issue
01da85ce7c Add flag to emit kernel immediately after invoking the CFE
af40a7e2d7 Improve regex to extract LSP request/notification methods
191a09f540 [infra] Add support for logs to tools/test.dart.
b35aebde1c Add --logs parameter to compare_results.dart, and output logs
3000e93024 Update status file for yet another combination.
f6852fa9c8 [gardening] Mark LibTest/collection/ListMixin/ListMixin_class_A01_t02 as ExtraSlow
2dbf91ff13 Add support for parsing Maps from the LSP spec
a0d576e6cd Add more tests for async*/await-for operations.
52183f2afa [infra] Implement 3-way comparison with approved_results in compare_results.
897f15d955 Update constant set literal tests.
00cec998f5 Integrated subtyping.md into dartLangSpec.tex
e7a048d12e Make constructors private
7ba67a0a74 Wrap various synthetic kernel nodes
e3793d8661 Use helper methods to handle SyntheticExpressionJudgment
170d5578c7 [vm/kernel] Move functionality of Fuchsia's compiler.dart into pkg/vm
f9ed759843 Bring in the latest dart_style.
43cd8ba822 Merge commit '4eeebc46cff4e47e6265e86f4774da103d060aa1' into analyzer
5ad8bf78e2 Add KPI::bytecode_component_ to raw_object_fields.cc
96dda6a516 Re-land "[vm/aot] Fill in names of properties in snapshot profile."
9f49b47823 [vm/bytecode] Revise representation of objects and strings in bytecode
aae0f7997d [vm/compiler] Express control dependence as data dependence.
0b66d91cd4 [vm] Adjust concurrent marker to re-enable code W^X.
4eeebc46cf [hhh] Patch flutter so it is compatible with latest analyzer
0a7cf2a513 Allow nulls for union values where the field can be null or undefined
179b96e796 Remove unnecessary awaits in LSP tests
2260758ffe [infra] Make --keep-generated-files work with -n option
64718ea369 Simplify control flow in ICData::FindFreeIndex.
7af0ba8dbf Merge commit '4088bb1302cebbb6922e1292037bc60127f1f852' into analyzer
8ca55acef5 Merge commit '6f5d6db9c237c3d52c65af4be59c0a631eaf2ff3' into analyzer
9a7f42d05a Merge commit 'dc346e6fdd89663388f8ae4e6767d6ece597c278' into analyzer
be529425d2 Prepare for a future breaking change to the UriResolver class.
7be1d77423 Remove invalid tests from set literal tests.
16cfb6c922 Remove TypeInferrerDisabled
f9ee5da8f8 Add BodyBuilder.legacyMode getter
cd6ecf19fa Clone metadata in BodyBuilder instead of type inference
4088bb1302 Remove prepareTopLevelInference from base builder API
cc003934fc Use modifiers to store some flags
7abe999437 Enable uploads from Dart SDK swarming builders
0fe6f76ffb Improve handling of duplicated declarations
6f5d6db9c2 Cherry-pick analyzer CHANGELOG and pubspec from analyzer-0.33 branch.
5b00611568 Revert "Add AnalysisDriver.resetUriResolution() and use it for analysis.reanalyze request."
dc346e6fdd Revert "[vm/aot] Fill in names of properties in snapshot profile."
465f8595ec [vm/aot] Fill in names of properties in snapshot profile.
2ca08ef2e1 [infra] Implement preapproval of failing tests in approve_results.
f72f07793b Handle null initializer, this is being hit internally when compiling large projects.
63770042aa Merge commit '80c23f87a3e3123d7e337c1fc8bc3b5ec49b34a0' into analyzer
80c23f87a3 Update more analyzer error codes to be generated
7f8e6f8bb6 Be more verbose in loops etc in kernel
20e819cbbe [gardening] Mark LibTest/io/FileSystemCreateEvent/isDirectory_A01_t06 flaky
17d322b62a Handle AmbiguousBuilder in computeRedirecteeType
5410bc4098 Fix rare crash in type inference engine
8db293ed70 Lazy VariableIndexer in ast_to_binary.dart
c45abca648 Get rid of double colons in override error messages.
8ab76a521a Use new type printer for bound errors on method calls.
e520f2480a Do UTF8 encoding slightly differently when serializing kernel
040ef6aabb [gardening] Lower core rlimit to 0 if test is expected to crash.
40dd503b3a [gardening] Mark LibTest/io/RawDatagramSocket/singleWhere_A03_t01 failing
3a52e7bc31 Avoid copying result arrays for nested types in type labeler.
ad62f21e5b Fix crash with multiple same-named redirecting constructors
85a6da1213 [Gardening] Attempt to make socket_bind test more robust by ignoring unrelated clients
0a2ed86935 Infer general flow through && and ||
1231244ede Add version information to SDK changes that have happened after 2.0.
c2bd36e94d Add --omit_platform as option to fasta.
45bf7e9906 validate deprecated lints
31e4c9de6e [vm] Remove dead pre-Observatory debugger code.
17a7f513c3 Fix up pubspec for pkg:compiler
440f190a34 Cleanup CompilerTask
0a05682d5b Cherry-pick 031e77eea11a16a5e486a3673549adbd68862c8e to the analyzer branch.
1d14b8a94e Prepare to publish analyzer 0.34.0.
bfcbd25102 [vm] Use decimal thread ids to match gdb and eu-stack.
6fbc7d27c4 [vm] Remove source-based loading APIs.
488d1f375c [vm] Make profiler bailout counters available over the VM service.
eb1153c546 Fix for override completion contributions for abstract void methods and setters.
73621c71b7 Cherry-pick CHANGELOG from analyzer-0.33 branch.
ec5b4bad99 Fix false positive for sdk constraints (issue 35290)
3428cc6dae Add AnalysisDriver.resetUriResolution() and use it for analysis.reanalyze request.
d9c6bc0316 Improvements to verbose timing data printing.
b72ca19f33 Merge commit 'c9aaa7a654b1cac1307c854ba38f4dc995c86f09' into analyzer
81abf9bb48 Merge commit '5bff334f84f5ce08cd7d10f9185ea150621aba1f' into analyzer
706776a14d Merge commit '80c4d3e3c70ba8d0dfcc3fd038f29a388652cf3b' into analyzer
c7dea39faa Fix analyzer CHANGELOG.
a354fd99a8 Add LSP support for flat symbol lists for older clients
031e77eea1 [infra] Update Clang toolchain and GN
c9aaa7a654 Re-formulation of type bound violation error messages
03a1fe30f5 De-duplicate some bound check code.
4427bb70bc Get rid of double colon notation for class members in messages.
820af6ba9e Test of type variable bound printing
c959bd98af Print origins of types in bullet points below error messages.
5198e49ffd Use new type labeler API in message generation.
aed186ad10 New printer for types and constants
c632e7cc6d Separate names of blacklisted core classes into their own file.
44f7295195 [VM] Free the current working directory string if we happen to re-initialize the VM
d93c19acb9 [Gardening] Update status file to extend test markers from Crash to Timeout (on MacOS)
56bccac775 Remove unused kernel/lib/application_root.dart
9c7bdf4aae Remove unused dependencies on logging and package_config
b52182ee14 Add LocalState to KernelTypeGraphBuilder
be5d0cca5c Remove sha1 impl from dart2js
ef419f68f9 Revert "[vm/compiler] Express control dependence as data dependence."
41f3d4326e [vm/compiler] Express control dependence as data dependence.
589a823888 Cherry-pick f02e7bb3745ace7edcda7905b2383f7da446acd7 to the analyzer branch
1d0c0559f6 Cherry-pick CHANGELOG from analyzer-0.33 branch.
03b7ade6b7 Relax front_end's pubspec SDK requirement
34d5751835 Move handlers into handlers/ folder + sort members
235da6f45d Rename AstNode.getAncestor by deprecating it and adding the new method (analyzer)
5bff334f84 Introduce replacement for AstNode.getAncestor (master)
65787a250e Use the experiment flag to enable scanning the >>> operator
80c4d3e3c7 Fix set literal optimization
de764dbec1 more set literal tests
6261ede840 Remove AnalysisServer.getResolvedCompilationUnit().
67c00eff46 Add basic support for hierarchical document symbols
581468fa63 [vm] Fix gcc build.
e9e70f0922 Reduce dependency on library spec from dart2js
9b65c81c03 Clear direct users of LibraryCycle on invalidate.
5d7786948c [infra] Add --keep-files flag to tools/test.py
854a7cfe15 Merge commit '43113760f2ea114c183f8965b0d48fbb7469dc7f' into analyzer
3f65406e2b Merge commit '232aa553fb97dbc2790b19363d85e2a7b74e6e27' into analyzer
fd53d061f0 Implement formatting provider for format-on-type
ff04743cdb Return errors instead of throwing
81a056c8a3 Cherry-pick CHANGELOG from analyzer-0.33 branch.
43113760f2 Use readAsBytesSync in standard_file_system.dart as it is faster
25f0c21c81 [infra] Fix approve_results reporting wrong number of changed tests
f780b6ea84 Remove obsolete log types from test.py
498994487b Cleanup of ast_to_binary
1ec63ec7d5 Only one source of truth for uriToSource
89936a2a0f Fix invalidating part specified via package uri via file uri
f5d1229081 Reland "[VM] Inline ClassID.getID() eagerly, extend pattern matching logic to recognize it, use it to special case ascii decoding"
c9a8589ba6 [VM] Remove dead code in precompiler
4aff8f93fb [VM] Ensure we handle devirtualized calls inside ApplyClassIds() as well
e25c744138 Clarify doc for Duration equals
be6593e5c6 Reduce params type from Either2<List<dynamic>, dynamic> to just dynamic
1c1539a9f7 Add tests that all requests work for unopen files
a3874044e7 [gardening] Restrict timeout status to MacOS.
801cea545d linter 0.1.73
44a9d0a0d6 Revert "Reland: [infra] Roll buildtools to c72a1c5aadde06505b7bb4641720880f3db28ff9"
82add824fd Merge commit 'db89c2d1ac3e8b6c6130cbb714c4e242e6fefc27' into analyzer
8a1ccf08c2 Merge commit 'f02e7bb3745ace7edcda7905b2383f7da446acd7' into analyzer
ad69aaef62 Reland: [infra] Roll buildtools to c72a1c5aadde06505b7bb4641720880f3db28ff9
232aa553fb Backport AnalysisSession.getResolvedLibrary()/ByElement().
2beed40848 Move Workspace and its implementations into src/workspace.
561d892d29 Only consider known files in AnalysisDriver.changeFile().
db89c2d1ac fix --kernel parsing when reading from parameter files, and dont reuse the compiler result
25262fe9b3 [gardening] Tests already marked as crashing or failing sometimes also time out.
3fdccc27ae Update analyzer SDK requirement
faafdb4b2f Revert "[VM] Inline ClassID.getID() eagerly, extend pattern matching logic to recognize it, use it to special case ascii decoding"
23d73687d2 Add logging of request in instrumentation log
8371240565 Reland https://dart-review.googlesource.com/c/sdk/+/84683
5949a3f984 Merge commit '5a54f0eb577f0f4a1708ddbd4f69bf70458ff647' into analyzer
829832d390 Minor LSP cleanup
8c69ec8c07 Revert "Reland: [infra] Roll buildtools to c72a1c5aadde06505b7bb4641720880f3db28ff9"
03ff950922 Reland: [infra] Roll buildtools to c72a1c5aadde06505b7bb4641720880f3db28ff9
92a8d5c193 Make it easier for lint rules to define their own lint codes
b505f0830a Split LocalsHandler.mergeDiamondFlow into mergeFlow and mergeDiamondFlow.
56dec98f0b Make LocalsHandler.locals and LocalsHandler.tryBlock private
418f2583bb Remove FieldInitializerScope from LocalsHandler
406d0b3e9c Remove unused code from LocalsHandler
82f9884289 Support exact class and this expression relations in StrongModeConstraint
d7cf6959bb [VM] Inline ClassID.getID() eagerly, extend pattern matching logic to recognize it, use it to special case ascii decoding
57ecf81f91 [fasta] Handle function types in arguments of mixin applications
e6e88c719c [gardening] Make standalone_2/io/http_loopback_test more robust.
a2ee414581 Support includeDeclarations for references request
797334a531 [fasta] Fix crashes in function type builders cloning
854c654c2d Fix LSP enum classes to use correct base types for value field
6ae01bacbe Tweak LSP test names
9cfab12d36 Reorganize imports to decouple dart2js_target.dart from dart2js
8d41ec30c0 Remove obsolete comment in status files.
61a1793574 Issue 35162. Include SDK version constraint into AnalysisOptions.
9906819fb7 Remove kernel isolate API from the public dart_api.h
e24b3b7772 [test] Further debugging for appjit_determinism_test.
52892f7c47 Add scanner and parser support for new >>> operator
b578e9ba6e Update vm_sources.gni, add a couple of missing file extensions
08c42ad75d Revert "[infra] Roll buildtools to c72a1c5aadde06505b7bb4641720880f3db28ff9"
f02e7bb374 Rework parseLiteralSetOrMapSuffix to remove expression lookahead
5a54f0eb57 Remove type checks that are already guaranteed
c2f1cd49a3 [infra] Roll buildtools to c72a1c5aadde06505b7bb4641720880f3db28ff9
01e85fa2e0 [vm/compiler] Replace simple induction analysis with new framework
0e275f123c Fix analyzer co19 status after d7ee7b951656014c6d7d25988682c80c4f57949d
9903d86d50 [infra] Apply flutter patches in flutter-analyze builds as well
cdd4adf467 [vm, kbc, dbc] Remove dependency on computed goto.
d31e83b909 [VM] Do simple block re-ordering in AOT by moving throwing blocks to the end
285f7ddb1b Switch to using constants for LSP method names
d7ee7b9516 Merge commit '880dfa0bca19b024bea57a20434da6f3f0fe9c87' into analyzer
3ad0571cf9 [fuchsia] Fixes for the Fuchsia build
10dac37103 [gardening] Marking slow tests as possible timeouts.
a61e10c7fa Change format tests to manually build an invalid string
880dfa0bca [vm/aot] Refactor clustered snapshot serialization to allow reflection of field names.
8fa1e010c4 Validate paths and offsets for all requests
682b9e3479 [gardening] Mark LibTest/io/RawDatagramSocket/close_A01_t01 failing
7f40d90544 Respect content formats when creating markup content
4a1983a1a8 Fix some TODOs and remove redundant test
78332742ac [gardening] Skip lib_2/async/timer_regress22626_test in reload-rollback + debug configuration
14d8f7c2da [gardening] Marking standalone_2/fragmentation_test Slow
d5ae2d573b Remove some unnecessary instance creations in ElementResolver
67472e59fb Remove an unused error code and the fix associated with it
60d6ca0de7 [vm] Fix v8_snapshot_profile_writer_test on Mac.
81cbb51292 Add --no-status flag to test.py, so the exit code does not depend on test status.
1891636db0 [gardening] Final attempt to fix apply.sh.
6300b7e0a0 [gardening] Fix apply.sh syntax (no spaces between variable name and =)
2fbc6b9a2e [gardening] Make apply.sh script force update git cache used by bots
1ed5f78e9c [gardening] Make apply.sh script fetch before trying to checkout.
c62af758ee [gardening] Switch apply.sh script to use bash instead of sh
01380ede49 [gardening] Expand 3xHEAD Flutter patch mechanism to support DEPS file changes.
92d2a70a9a [gardening] Update v8_snapshot_profile_writer_test status for dartkp-mac-release-simarm64
ba0222df78 [flutter] Update flutter-engine-linux 3xHEAD patch.
ed09a1e5f9 Update documentation of List.filled.
1cc8f36da2 [vm/compiler] Add VM Compiler Team WATCHLIST
bb4e2388b8 Use BasicInfo.resetIds
4a641a69fc [vm] Update status file for v8_snapshot_profile_writer_test.
02bf089ed5 Rough implementation of LSP References
ea56fe71f5 Fix definitions that cross files
8b01876d79 Rollback to C++11.
3cedae6f09 Change diagnostic.code to a simple String
df5ed5458f Move some LSP file-handling code into the file handler
8aa0af0654 [vm] Fix C++ incompatibility in V8SnapshotProfileWriter
a29f55e296 [VM] Mark tests slow after removing unsafe optimization for integer operation folding
0ef66e0f5c [VM] Add @pragma("vm:non-nullable-result-type") annotation
f43c76538b TBR: Added a missing status update to the int64.md feature specification.
cde4270e47 Re-land "[vm/aot] Snapshot size analysis."
5ced1f1cd2 add documentation to Function::parameter_types
48fee5f591 Update status file for receive_A01_t01 and where_A01_t01.
ad7fbb6dd7 [VM] Fix flow graph builder to not generate different code in unoptimized/optimized mode
2ebdf7c0f8 [VM] Ensure the _TypedListView.{offsetInBytes,length} fields are always initialized with _Smi's
614ae7f362 Integrated covariant parameter feature specs.
08a4e020b3 [VM] Get rid of duplicate return-type-cid information from method recognizer
dcc9f74a3c [kernel] Make instantiate-to-bound implementation in Kernel private
8b2458c97b [co19] DEPS and .status file update
94c325a889 Reland "[VM] Make @pragma annotations work generally"
4646e804dc Wrap last debugPath.add in assert
1eccfb864a Single handler per LSP message
f0b26ca685 Add offsets to kernel size breakdown
95d67393a8 Sort libraries to produce stable library cycle signatures.
edba6fbfaa [vm, gc] Add --force-evacuation flag to aid finding untracked pointers.
198d4d135f Infer an empty set literal when appropriate
24482b7514 Display enabled experiments on the status pages
9efa15fd7d Roll latest dart2js info to sdk repo
94d1d74076 Improve the exception message when a library can't be found in a summary.
fcde804eb4 [ VM / API ] Added Dart_IsTearOff to the Dart API.
c5601d7d47 Switch Parsed/ResolvedLibraryResultImpl to AnalysisSession.getParsed/ResolvedLibraryByElement().
e6800d9589 [vm] Disable bytecode generation while training kernel service
02f6395606 Cleanup library-loader: rename as kernel producer, remove some dependencies
e1ffe76a36 [vm] Replace StubEntry with Code handles.
e649ed1aa3 Merge commit 'c1daa3276566e48dac6f52742264578092c56a35' into analyzer
f3344f3c13 Update parser to report error for missing comma
c1daa32765 Fix some issues with the set literal tests
1ac2251706 Extract state handling from LSP server to separate handlers
4b51cea91b More docs for Timer.cancel()
0fded45406 Handle serialization with --dump-info
e62951fd3d Use assigned variables data to infer static types for effectively final locals.
e79cb0232f Fix return for Socket.setOption.
6f2fad87d9 Improve handling of errors
c8bc0a04c7 Extract common code to shared abstract base class
ae6f534188 Add fixes for SDK violation hint
1e186ad9cb [dartdevc] fix build times by only linking input sources
4255a012f8 Update analyzer pubspec to note dependency on pub_semver.
758e690b8d Enable the use of set literals in the analyzer unit tests
751d7ad2e2 [dartdevc] fix js_ast comma expression not generating parentheses
c165ef8a37 Ensure that lists and maps built by ExprBuilder have their staticType set.
5498e58e3c Remove unused GnWorkspace.findFile().
9ca6369ef5 [VM] Add locking around accessing constants arrays on scripts
83ba397368 [VM] Propagate [UnwindError]s directly instead of wrapping them in [LanguageError]s
8044e32fc5 [infra] Blacklist android device id in attempt to make buildbot builder more stable
099f48b1da [dartdevc] fix #33621, name collision due to inheriting JS statics
6e8fe410bb Mention libraries-spec in the changelog as well
c8372c00dc Patch hhh flutter flutter as follow-up to https://dart-review.googlesource.com/c/sdk/+/84688
59e17553f9 Upgrade call-instrumentation logic.
eceafa2df8 new “deprecated” lint maturity
ebeae74390 Update version before publishing
57a4f11b64 [gardening] Patch flutter engine post 0ca1c57
42d4269e06 Remove unused import
d29633f080 Add support for accessing the errors produced during constant evaluation
b607f65217 More dartfix tests
0ca1c57593 Reland "[VM] Remove unused flags"
fafb93ecbd Perform type analysis and inference for set literals
e8e072f87e Merge commit 'bf6ba5db9e2cfef7dad2b5283be93d589f4c7a5a' into analyzer
8cef3d978b Merge commit 'cb883470871af88a4ffba54f5d2cadf6eb7fa315' into analyzer
47b70aabee Merge commit '784ad29470c96a275fb788c26d3dae08e2766285' into analyzer
b0730135ff [VM] Use ArrayOfTuplesView for invocation dispatchers
257a6c8d2b Don't send error responses to $/ notifications/requests
064a7d89ce [vm/compiler] Add VM Compiler Team WATCHLIST
3bf6a550ea Add static type tests
d544a5d3b6 Compute variable allocation data during closure scope visitor.
601587b305 Make CapturedScopeBuilder child visits explicit
b943fa897c Move closure scope classes to ir/
bf6ba5db9e [infra] Update checked in SDKs to 2.2.0-dev.0.0
3f2b605b57 [gardening] Mark LibTest/io/Stdin/first_A04_t01 as flaky
a8c30d89d3 Add basic LSP definition handling
f6c41ac3bc Revert "[VM] Remove unused flags"
1a4cff1bd4 [VM] Remove unused flags
8422bf1a80 dart2js experiment: force parens around part file function
935103fd0f Update lookup-name tool to use the dart2js_mapping implementation.
be670f0362 [test] Update status files for tests with code objects newly-passing on 64-bit Windows.
75ce78a117 [ VM ] Uncomment test that was failing due to issue 33417
c6d9e040da Revert "[android] Override __cxa_demangle() in PRODUCT mode"
051643c0ed Hook up analyzer set literal logic to Fasta parser.
5c7f36e2f1 Add getParsed/ResolvedLibraryByUri() to AnalysisDriver and use in AnalysisSession.
0b46639335 Revert "Hide vmservice.cc behind PRODUCT macro."
86111b5543 [dart/fuzzer] Disable jit-opt modes
9b937f1226 Revert "[vm/aot] Snapshot size analysis."
a8b833750a Convert parser.dart to triple-slash comment style
715a78dfd1 [vm/compiler] Fine tune linear register allocation
90b694b93d Keep resynthesized annotations, even if partially unresolved.
713675bd35 Fix viewing generated code in Observatory on Windows
aa9d186fa5 More analyzer set literal tests
cb88347087 Port the SDK violation hint to the master branch
784ad29470 Update dartfix to check analysis server protocol version
06c89287b9 [vm/aot] Snapshot size analysis.
e4a5ab06e4 Update the SDK version for the front_end package
913cc2c73d [vm] Attribute time waiting for kernel isolate to LoadWait instead of VM.
1def1f5007 Hide vmservice.cc behind PRODUCT macro.
1ca0afe3e2 [VM] Add has_pragma bit to Field and populate it in the kernel loader
1a890ff07d [test] Dump symbol and type tables in determinism test.
de2e6a5543 Return ResultState.NOT_A_FILE for external libraries from getParsed/ResolvedLibrary().
032bfe0872 Use void rather than Object as a type argument when possible
899d1c15c7 Rollforward of the dart_io_api.h include change, with a fix for flutter.
4e8ffc06cf [gardening] re-enable tests disabled for https://github.com/dart-lang/sdk/issues/25649
47e11951a8 Add a missed test file
62c562ed7a [vm/bytecode] Encapsulate constant pool entry creation
3f03b07d53 Keep actual resynthesized constant expressions even when they are partially unresolved.
6d8e14c9db Merge commit 'f56fea3e6389727df2cae5c6feebcdd49437b12a' into analyzer
233dd29167 [vm/compiler] Make Slot::Get respect field's guarded_cid in AOT mode
f56fea3e63 Fix typo.
f9ce4729c5 [release] Update changelog with correct release date for 2.1.0
52d1a2b29b [release] Prepare changelog and version for 2.2.0-dev.0.0
0561ff2619 Add tests for trailing commas in set literals.
fd7b86e159 [toolchain] Update Windows VS toolchain to current Chromium one (18fbbd3).
7f63fcfe1f Add AstBuilder set literals support
a9abc64613 [vm/bytecode] Add context IDs to disambiguate accesses to distinct contexts
81d899ac30 [dart/fuzzer] Add mode to stress test JIT optimization
9677ec9a14 Fix parsing complex function expressions
32a6032f03 Merge commit 'ddbe22190c41b1993a3c93b67f1bfa57287348f8' into analyzer
920630acab Cherry-pick 19d9aa3337c36eb4409f815880297a85c1d5aab4 to analyzer branch.
7fafcec013 [vm/bytecode] Eliminate AssertBoolean instructions if condition is non-nullable
716c9dcde2 Add a hint when Future is imported from core in code targeted to run with an SDK prior to 2.1
b27d6078c2 Update getLibraryByUri() to more directly use external summaries, and check for part instead of library.
ddbe22190c [vm/compiler] Refactor representation of stores and loads in IL.
cdcb76e12b [gardening] Fix runtime/observatory/tests/service/udp_socket_service_test
bdf8b0bc79 [dart2js] Remove some clumbsy negations in generated JavaScript
dba295527b Merge commit '2535b1e0219779d9befe65d6c09275044b233bc2' into analyzer
01e0df71a8 Stop unnecessarily extending Object
aad435f45f [VM] Always bailout from constant evaluator if used on the background compiler
4e3e5711eb [dartdevc] fix kernel backend summary to module mapping
845310302d Revert "[VM] Add @pragma annotations on Field, make @pragma annotations work generally"
2de63ac01c [VM] Add @pragma annotations on Field, make @pragma annotations work generally
79b85ae944 Add --write_logs to set of blacklisted objects, so they do not appear on reproduction commands
2776108a8f Remove LocalsHandler._capturedAndBoxed
b981cbfff8 [vm] Adds a flag to dump dynamic bytecode traces in a debug build.
d5145ade2e Quick fix for the flutter build.
85986c818a First cut fasta parser support for set literals
ae04c6e63b [build] Remove unused configurations (dead since removal of dart_bootstrap).
61eea1f416 [VM runtime] Remove unused UnresolvedClass VM class.
53a47b25ff Standardize the #includes in runtime/include/*h.
e39fa29bd6 analysis_server_client API tweaks before publish
8414e2240c Don't report DEPRECATED_MEMBER_USE for deprecated mixins, top-level variables, and class fields.
338b123002 Change the order of enumerated values in UnlinkedExprOperation
a6665c1aa1 Fix for computing constant values of annotations with named constructors.
b12c125825 Export Future from dart:core in the mock sdk
6596a305fd Optimize VM List's setAll method.
23980a34a6 Fix a typo.
19d9aa3337 Add isLibraryByUri() to AnalysisDriver.
2535b1e021 [vm] Account for bytecode in profile processing and Observatory.
b14b19e13c Merge commit '9e3d3cf765ba3f761b2507950039bcdd2dd3ece8' into analyzer
14688305d4 Basic LSP signature help implementation
02fe9fabd8 [fuchsia] Add missing entrypoint annotation
733b53d971 [vm] Mark enum_private_test/01 as flaky.
9e3d3cf765 [VM] Use strict compare instruction only if receiver is nullable int
6914a86177 [vm] Update status file for enum_private_test/01.
f264a67d7f Basic completion support
bec2daba02 Cleanup analysis_server_client API
11af2a6406 [VM] Only use strict comparisons if the receiver has a numeric type
a454b5d564 [VM] Use redefinitions for strenghtening, prefer equality comparison over strict comparison
6b8aeb8898 [vm] Update status file for inference_enum_list_test.
bc2294c004 [infra] Shard reload builders
a1a38da58e [vm] Report an error when illegally accessing class through API in AOT mode.
aea0aadf41 [VM] Unify AOT optimizations for int/double's
a2dfa75371 [vm] Fix TypeParameter skipping logic in KernelLoader::LoadClass
4ae585ce86 Remove redundant fields from LocalsHandler
59949a9201 Use whereType in status_file_linter.dart
ed48cfeb47 [vm/bytecode] Support source positions when executing bytecode
737f44a8dd Add type argument count to type info in fasta parser
89719f4eab Cherry-pick changes from the analyzer-0.33 branch.
e58e3fbb55 Deprecate the "virtual" annotation
7d84c2e4b0 Serialization of set literals
4abe764b79 Update the changelog to include information about implicit-casts
5a14f9e619 Remove unnecessary setupPackages step.
5214afdb25 remove platform_configuration parser
5afc1ec336 [ VM / Observatory ] Fixed tests that were failing due to lack of sources in app_jitk mode
1b5996ae67 Merge commit '30c5b39d4e0e7672d05df6aebba73254dd7ee770' into analyzer
4c683215fc [vm/compiler] induction variable analysis
60f02dd2aa Re-enable the no-implicit-casts option
c8e95cf3b5 More lint-driven cleanup of Core libs
30c5b39d4e Integrated dynamic-members.md
8546a3a448 Revert accidental change to analyzer
1ade3b624f [infra] Switch cross-arm64 builder to use a single shard
207f06ca47 Typo fix in spec, just one spurious `{` removed.
eb4f9290de [infra] Add arm64 builders to the test matrix
d4f9d36dee Rewrite comments to refer to legacy mode instead of strong mode
98987d2342 Talk about legacy mode, not strong mode in perf tools
9931b77802 Rename strongMode constructor parameter of TypeSchemaEnvironment to legacyMode
6995ac59a8 Rename strongMode parameter of computeDefaultTypesForVariables to legacyMode
9b852e00a1 Update comment in body_builder.dart to say legacyMode
a0e08e1468 Rename strongMode parameter of getRedirectionTarget to legacyMode
7b020f5ae3 Rename InterfaceResolver.strongMode to legacyMode
573a7c543f Rename strongMode to legacyMode in test suite
d412f50f03 Rename TypeInferrerImpl.strongMode to legacyMode
e761241f9e Rename TypeInferenceEngine.strongMode to legacyMode
98e207d1d2 Rename KernelTarget.strongMode to legacyMode
10f210f83b Use factories for instantiating TypeInferrer
9fb16b9669 Use independent name for lazy-initializing static getter
f721d52163 [VM runtime] Introduce a new VM class Bytecode.
bea7be00e1 [test] Check for determinism from the kernel compiler.
8f7a0f400b [vm/bytecode] Emit source positions for bytecode instructions
8d5d8342af Short form install-tear-offs for common cases
bc03bd3805 Cleanup unused vars in VM patch files
da191665aa Issue 34709. Support generic type alias (AKA generic function type alias for now) in outline and completion.
fc2888982c Merge commit 'c92f9dce2357d0da7909c0c5f630ad59882ccf29' into analyzer
e2f99e4cee [vm] Update the profiler to account for the interpreter.
c04461c16d [vm/bytecode] Fix allocation of temporary locals for StaticSet
1d00a8a11f Add checking for errors related to set literals
c92f9dce23 Faster isNotEmpty on collections
fa800e270c Run "sort members" on LSP files
0a28d049c7 Revert "[infra] Add back generate_buildfiles.py to gclient hooks"
9ed26558f1 [infra] Add back generate_buildfiles.py to gclient hooks
86e1bb0cc7 Add a TokenType for the new shift operator (>>>)
d7ea36477f [VM] Invoke a new isolate notify callback on install if there are pending messages
600af11045 [VM] When disassembling dump functions seperately from non-function Code
8166908a03 Improve hovers to include the elementDescription
937e950fd2 Parse inline interfaces into types
f4a80a8466 [vm/bytecode] Fix entry point when optimized code is cleared but bytecode remains
3826a983b0 Add constant evaluation for lazy null-aware and lazy conditional expressions
802db45879 Increment AnalysisDriver.DATA_VERSION to invalidate current analysis results in Flutter HHH bot.
927f0937bd [infra] Add test.dart script for local testing.
f6128b48b6 Add constant evaluation for operators that now apply to bool as well as int
2079620a53 Issue 34733. Expand 'implicit-casts' controlled casts, and deprecate more of 'declaration-casts'.
6880bfca41 Cherry-pick 028ac521805dde0d71a1c97d1063b091fcddfe25 from analyzer to master.
7cf3382f8f Fix OpType.inXyzBody to actually being in body.
3c32b32d56 [vm/bytecode] Enable OSR for unoptimized code compiled from bytecode
c9ae39a9bf Issue 34741. Update error message to make it less unclear.
c60cff1d33 [dart/fuzzer] Introduce time-based test runs
8043e9851c [infra] Fix test matrix path logic in approve_results.
4534e3ea6d Use the constants defined in Experiments rather than hard coding them in multiple places
d53f8c8789 Issue 34735. Fix completion in ConstructorFieldInitializer expression.
9cf51348d4 Issue 33553. For get/set. Don't report ABSTRACT_SUPER_MEMBER_REFERENCE if the nominal superclass has noSuchMethod().
51f34ea580 Split up the tests for fixes related to lints
268993acb2 Provide support for is and as expressions
76e0d94616 [gardening] fix retries in socket_source_address_test
5147c0c6f1 Fix handling of UTF8 characters in LSP packets
83a05147ae [gardening] fix retries in socket_ipv6_test
3ae0dcaa18 Merge commit '5ef1465c55be601f601e1f565c9b9d2f94d76aff' into analyzer
5ef1465c55 [vm] Attach type to parameters on unchecked entry.
deaf5f4528 Only check bounds on recompiled libraries
bbb7cd9f4a Update type promotion expectations
4609fab2cc Revert "[test] Check for determinism from the kernel compiler."
c1db6b5336 Only track type promotion of locals
afe3e68841 Is-not doesn't lead to promotion
127852deed Prepare for matching expectations
0d051a4c65 Don't wrap no-argument sends
efcca56e36 Ensure stack is empty after top-level declarations
47cada07ac Start computing scopes for type promotion
552b25084e Generate NotificationHandler dartdoc and add server tests
74974952b9 Pass through method.requiredParameterCount
015f51c304 Fix windows sdk script
e33dee2a38 [gardening] Update status for issue #35128
a571855c8b [test] Check for determinism from the kernel compiler.
39297646bf [ Corelib / Tests ] Removed tests for Maps helper class, which no longer exists
d062a41404 Make resolution/codegen_world_builder into libraries
b484aada21 Remove library-root option - replace it with a libraries-spec option instead
9f9d7cdc7b Collapse JsKernelToElementMap hierarchy
5cb37ff5b8 Collapse KernelToElementMapImpl hierarchy
49a4a177ab Support explicit data files in --read-data and --write-data options
d74f272d78 [vm/bytecode] Enable optimized compilation if running with interpreter
1c1e013177 Introduce an interactive progress that uses a single line per phase
799cad6dfd Fix tests failing on Windows bot.
cb522bfcd2 [vm] Update Windows synchronization code to CONDITION_VARIABLEs and SRWLOCKs.
4b900fdcc5 [vm] Clarify timeline events for unoptimized background compilation, take 2
97bb5c0e1b Fix some TODOs in MethodInvocationResolver.
c44421dbba less verbose: remove progress form verbose mode, add a separate flag for it
a20986b299 [dart/fuzzer] Reduce number of runs to avoid timeouts
3a427f3294 Add an object representation for literal constant sets
a4dc8cd22e [vm/kernel/bytecode] Make sure bytecode instructions are aligned in kernel
27537b458a [VM] Ensure parameters from unchecked entrypoints have type attached
5db3314a86 [gardening] Update status for language_2/type_constants_test/none
4f5bc1ea22 Add test for constant type literals being valid in switch cases and constant maps.
f9d93f6d4e Revert "[vm] Clarify timeline events for unoptimized background compilation"
fa6a1684ef [vm] Introduce a separate VMTag for the interpreter.
136c013bea [vm] Clarify timeline events for unoptimized background compilation
0caf8dd8ed Add logs.json file to results from test.py, output of failing tests
037792876a Fix analysis hints/warnings in runtime/observatory
3a513641bb [vm] Don't ignore the return value of TypeArguments::Canonicalize.
bf26f2c022 [test] Update status for get_vm_timeline_rpc_test: Slow doesn't imply Pass.
94f93f788a [vm] Remove Dart scanner.
c6148ecba7 Add support for reading experimental options from the command-line
0bf9635a62 [gardening] Fix dart2 errors in socket_upgrade_to_secure_test.
8ca05c506f [vm/compiler] Whitelist byteswap inlining
3ee9f61c8d [vm/compiler] Fix bug in list inclusion test
56ea31b3d6 [vm/gardening] Mark get_vm_timeline_rpc_test as slow.
9cbd76d2bd Issue 35090. Concrete nominal superclasses of mixin applications provide at least noSuchMethod forwarders for super-invoked members.
f9ebf21297 Version 2.1.0-dev.9.4

* Fix engine build options.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends. crash Process exits with SIGSEGV, SIGABRT, etc. An unhandled exception is not a crash. gardening
Projects
None yet
Development

No branches or pull requests

2 participants