@@ -155,7 +155,6 @@ for command; do
155
155
samples-dev/swarm \
156
156
third_party/pkg \
157
157
third_party/pkg_tested \
158
- .packages \
159
158
.dart_tool/package_config.json \
160
159
pkg \
161
160
benchmarks \
@@ -170,8 +169,8 @@ main() {
170
169
print("Hello, World");
171
170
}
172
171
EOF
173
- out/ReleaseIA32/dart --profile-period=10000 --packages=.packages hello.dart
174
- out/ReleaseIA32/dart --sound-null-safety --profile-period=10000 --packages=.packages hello.dart
172
+ out/ReleaseIA32/dart --profile-period=10000 hello.dart
173
+ out/ReleaseIA32/dart --sound-null-safety --profile-period=10000 hello.dart
175
174
out/ReleaseIA32/dart pkg/front_end/tool/perf.dart parse hello.dart
176
175
out/ReleaseIA32/dart pkg/front_end/tool/perf.dart scan hello.dart
177
176
out/ReleaseIA32/dart pkg/front_end/tool/fasta_perf.dart kernel_gen_e2e hello.dart
182
181
out/ReleaseIA32/run_vm_tests --dfe=out/ReleaseIA32/kernel-service.dart.snapshot --sound-null-safety KernelServiceCompileAll
183
182
out/ReleaseIA32/run_vm_tests --dfe=out/ReleaseIA32/kernel-service.dart.snapshot UseDartApi
184
183
out/ReleaseIA32/run_vm_tests --dfe=out/ReleaseIA32/kernel-service.dart.snapshot --sound-null-safety UseDartApi
185
- out/ReleaseIA32/dart --profile-period=10000 --packages=.packages benchmarks/Example/dart2/Example.dart
186
- out/ReleaseIA32/dart --sound-null-safety --profile-period=10000 --packages=.packages benchmarks/Example/dart/Example.dart
184
+ out/ReleaseIA32/dart --profile-period=10000 benchmarks/Example/dart2/Example.dart
185
+ out/ReleaseIA32/dart --sound-null-safety --profile-period=10000 benchmarks/Example/dart/Example.dart
187
186
out/ReleaseIA32/dart benchmarks/NativeCall/dart2/NativeCall.dart
188
187
out/ReleaseIA32/dart --sound-null-safety benchmarks/NativeCall/dart/NativeCall.dart
189
188
out/ReleaseIA32/dart benchmarks/FfiBoringssl/dart2/FfiBoringssl.dart
306
305
samples-dev/swarm \
307
306
third_party/pkg \
308
307
third_party/pkg_tested \
309
- .packages \
310
308
.dart_tool/package_config.json \
311
309
pkg \
312
310
benchmarks \
@@ -321,31 +319,31 @@ main() {
321
319
print("Hello, World");
322
320
}
323
321
EOF
324
- out/ReleaseX64/dart --profile-period=10000 --packages=.packages hello.dart
325
- out/ReleaseX64/dart --sound-null-safety --profile-period=10000 --packages=.packages hello.dart
326
- DART_CONFIGURATION=ReleaseX64 pkg/vm/tool/precompiler2 --packages=.packages hello.dart blob.bin
322
+ out/ReleaseX64/dart --profile-period=10000 hello.dart
323
+ out/ReleaseX64/dart --sound-null-safety --profile-period=10000 hello.dart
324
+ DART_CONFIGURATION=ReleaseX64 pkg/vm/tool/precompiler2 hello.dart blob.bin
327
325
DART_CONFIGURATION=ReleaseX64 pkg/vm/tool/dart_precompiled_runtime2 --profile-period=10000 blob.bin
328
- DART_CONFIGURATION=ReleaseX64 pkg/vm/tool/precompiler2 --sound-null-safety --packages=.packages hello.dart blob.bin
326
+ DART_CONFIGURATION=ReleaseX64 pkg/vm/tool/precompiler2 --sound-null-safety hello.dart blob.bin
329
327
DART_CONFIGURATION=ReleaseX64 pkg/vm/tool/dart_precompiled_runtime2 --profile-period=10000 blob.bin
330
- out/ReleaseX64/dart --profile-period=10000 --packages=.packages -- optimization-counter-threshold=-1 hello.dart
331
- out/ReleaseX64/dart-sdk/bin/dart compile js --packages=.packages -- out=out.js -m hello.dart
328
+ out/ReleaseX64/dart --profile-period=10000 --optimization-counter-threshold=-1 hello.dart
329
+ out/ReleaseX64/dart-sdk/bin/dart compile js --out=out.js -m hello.dart
332
330
third_party/d8/linux/x64/d8 --stack_size=1024 sdk/lib/_internal/js_runtime/lib/preambles/d8.js out.js
333
- out/ReleaseX64/dart-sdk/bin/dart compile js --sound-null-safety --packages=.packages -- out=out.js -m hello.dart
331
+ out/ReleaseX64/dart-sdk/bin/dart compile js --sound-null-safety --out=out.js -m hello.dart
334
332
third_party/d8/linux/x64/d8 --stack_size=1024 sdk/lib/_internal/js_runtime/lib/preambles/d8.js out.js
335
- out/ReleaseX64/dart-sdk/bin/dart compile js --packages=.packages -- out=out.js -m hello.dart
333
+ out/ReleaseX64/dart-sdk/bin/dart compile js --out=out.js -m hello.dart
336
334
LD_LIBRARY_PATH=third_party/firefox_jsshell/ third_party/firefox_jsshell/js -f sdk/lib/_internal/js_runtime/lib/preambles/jsshell.js -f out.js
337
- out/ReleaseX64/dart-sdk/bin/dart compile js --sound-null-safety --packages=.packages -- out=out.js -m hello.dart
335
+ out/ReleaseX64/dart-sdk/bin/dart compile js --sound-null-safety --out=out.js -m hello.dart
338
336
LD_LIBRARY_PATH=third_party/firefox_jsshell/ third_party/firefox_jsshell/js -f sdk/lib/_internal/js_runtime/lib/preambles/jsshell.js -f out.js
339
- out/ReleaseX64/dart-sdk/bin/dart compile js --benchmarking-production --packages=.packages -- out=out.js -m hello.dart
337
+ out/ReleaseX64/dart-sdk/bin/dart compile js --benchmarking-production --out=out.js -m hello.dart
340
338
third_party/d8/linux/x64/d8 --stack_size=1024 sdk/lib/_internal/js_runtime/lib/preambles/d8.js out.js
341
- out/ReleaseX64/dart-sdk/bin/dart compile js --sound-null-safety --benchmarking-production --packages=.packages -- out=out.js -m hello.dart
339
+ out/ReleaseX64/dart-sdk/bin/dart compile js --sound-null-safety --benchmarking-production --out=out.js -m hello.dart
342
340
third_party/d8/linux/x64/d8 --stack_size=1024 sdk/lib/_internal/js_runtime/lib/preambles/d8.js out.js
343
- out/ReleaseX64/dart-sdk/bin/dart compile js --benchmarking-x --packages=.packages -- out=out.js -m hello.dart
341
+ out/ReleaseX64/dart-sdk/bin/dart compile js --benchmarking-x --out=out.js -m hello.dart
344
342
third_party/d8/linux/x64/d8 --stack_size=1024 sdk/lib/_internal/js_runtime/lib/preambles/d8.js out.js
345
343
out/ReleaseX64/dart-sdk/bin/dart pkg/dev_compiler/tool/ddb -r d8 -b third_party/d8/linux/x64/d8 hello.dart
346
- out/ReleaseX64/dart-sdk/bin/dart pkg/dev_compiler/tool/ddb -r d8 -b third_party/d8/linux/x64/d8 --mode=compile --compile-vm-options=--print-metrics --packages=.packages -- out out.js hello.dart
344
+ out/ReleaseX64/dart-sdk/bin/dart pkg/dev_compiler/tool/ddb -r d8 -b third_party/d8/linux/x64/d8 --mode=compile --compile-vm-options=--print-metrics --out out.js hello.dart
347
345
out/ReleaseX64/dart-sdk/bin/dart pkg/dev_compiler/tool/ddb -r d8 -b third_party/d8/linux/x64/d8 --sound-null-safety hello.dart
348
- out/ReleaseX64/dart-sdk/bin/dart pkg/dev_compiler/tool/ddb -r d8 -b third_party/d8/linux/x64/d8 --sound-null-safety --mode=compile --compile-vm-options=--print-metrics --packages=.packages -- out out.js hello.dart
346
+ out/ReleaseX64/dart-sdk/bin/dart pkg/dev_compiler/tool/ddb -r d8 -b third_party/d8/linux/x64/d8 --sound-null-safety --mode=compile --compile-vm-options=--print-metrics --out out.js hello.dart
349
347
out/ReleaseX64/dart pkg/front_end/tool/perf.dart parse hello.dart
350
348
out/ReleaseX64/dart pkg/front_end/tool/perf.dart scan hello.dart
351
349
out/ReleaseX64/dart pkg/front_end/tool/fasta_perf.dart kernel_gen_e2e hello.dart
@@ -354,16 +352,16 @@ EOF
354
352
echo ' [{"name":"foo","edits":[["pkg/compiler/lib/src/dart2js.dart","2016","2017"],["pkg/compiler/lib/src/options.dart","2016","2017"]]}]' > appjit_train_edits.json
355
353
out/ReleaseX64/dart --background-compilation=false --snapshot-kind=app-jit --snapshot=pkg/front_end/tool/incremental_perf.dart.appjit pkg/front_end/tool/incremental_perf.dart --target=vm --sdk-summary=out/ReleaseX64/vm_platform_strong.dill --sdk-library-specification=sdk/lib/libraries.json pkg/compiler/lib/src/dart2js.dart appjit_train_edits.json
356
354
out/ReleaseX64/dart --background-compilation=false pkg/front_end/tool/incremental_perf.dart.appjit --target=vm --sdk-summary=out/ReleaseX64/vm_platform_strong.dill --sdk-library-specification=sdk/lib/libraries.json pkg/front_end/benchmarks/ikg/hello.dart pkg/front_end/benchmarks/ikg/hello.edits.json
357
- out/ReleaseX64/dart --packages=.packages pkg/kernel/test/binary_bench.dart --golem AstFromBinaryLazy out/ReleaseX64/vm_platform_strong.dill
355
+ out/ReleaseX64/dart pkg/kernel/test/binary_bench.dart --golem AstFromBinaryLazy out/ReleaseX64/vm_platform_strong.dill
358
356
out/ReleaseX64/run_vm_tests --dfe=out/ReleaseX64/kernel-service.dart.snapshot InitialRSS
359
357
out/ReleaseX64/run_vm_tests --dfe=out/ReleaseX64/kernel-service.dart.snapshot --sound-null-safety InitialRSS
360
358
out/ReleaseX64/run_vm_tests --dfe=out/ReleaseX64/kernel-service.dart.snapshot KernelServiceCompileAll
361
359
out/ReleaseX64/run_vm_tests --dfe=out/ReleaseX64/kernel-service.dart.snapshot --sound-null-safety KernelServiceCompileAll
362
360
out/ReleaseX64/run_vm_tests --dfe=out/ReleaseX64/kernel-service.dart.snapshot UseDartApi
363
361
out/ReleaseX64/run_vm_tests --dfe=out/ReleaseX64/kernel-service.dart.snapshot --sound-null-safety UseDartApi
364
- out/ReleaseX64/dart --profile-period=10000 --packages=.packages benchmarks/Example/dart2/Example.dart
365
- out/ReleaseX64/dart --sound-null-safety --profile-period=10000 --packages=.packages benchmarks/Example/dart/Example.dart
366
- out/ReleaseX64/dart --profile-period=10000 --packages=.packages benchmarks/IsolateSpawn/dart2/IsolateSpawn.dart
362
+ out/ReleaseX64/dart --profile-period=10000 benchmarks/Example/dart2/Example.dart
363
+ out/ReleaseX64/dart --sound-null-safety --profile-period=10000 benchmarks/Example/dart/Example.dart
364
+ out/ReleaseX64/dart --profile-period=10000 benchmarks/IsolateSpawn/dart2/IsolateSpawn.dart
367
365
cd ..
368
366
rm -rf tmp
369
367
else
0 commit comments