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

Side by Side Diff: tools/testing/dart/runtime_configuration.dart

Issue 1858283002: Initial SIMDBC interpreter. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/gyp/configurations_make.gypi ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library runtime_configuration; 5 library runtime_configuration;
6 6
7 import 'compiler_configuration.dart' show CommandArtifact; 7 import 'compiler_configuration.dart' show CommandArtifact;
8 8
9 // TODO(ahe): Remove this import, we can precompute all the values required 9 // TODO(ahe): Remove this import, we can precompute all the values required
10 // from TestSuite once the refactoring is complete. 10 // from TestSuite once the refactoring is complete.
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 switch (arch) { 164 switch (arch) {
165 case 'simarm': 165 case 'simarm':
166 case 'arm': 166 case 'arm':
167 case 'simarmv6': 167 case 'simarmv6':
168 case 'armv6': 168 case 'armv6':
169 case ' simarmv5te': 169 case ' simarmv5te':
170 case 'armv5te': 170 case 'armv5te':
171 case 'simmips': 171 case 'simmips':
172 case 'mips': 172 case 'mips':
173 case 'simarm64': 173 case 'simarm64':
174 case 'simdbc':
174 multiplier *= 4; 175 multiplier *= 4;
175 break; 176 break;
176 } 177 }
177 if (mode == 'debug') { 178 if (mode == 'debug') {
178 multiplier *= 2; 179 multiplier *= 2;
179 } 180 }
180 return multiplier; 181 return multiplier;
181 } 182 }
182 } 183 }
183 184
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 class DummyRuntimeConfiguration extends DartVmRuntimeConfiguration { 272 class DummyRuntimeConfiguration extends DartVmRuntimeConfiguration {
272 List<Command> computeRuntimeCommands( 273 List<Command> computeRuntimeCommands(
273 TestSuite suite, 274 TestSuite suite,
274 CommandBuilder commandBuilder, 275 CommandBuilder commandBuilder,
275 CommandArtifact artifact, 276 CommandArtifact artifact,
276 List<String> arguments, 277 List<String> arguments,
277 Map<String, String> environmentOverrides) { 278 Map<String, String> environmentOverrides) {
278 throw "Unimplemented runtime '$runtimeType'"; 279 throw "Unimplemented runtime '$runtimeType'";
279 } 280 }
280 } 281 }
OLDNEW
« no previous file with comments | « tools/gyp/configurations_make.gypi ('k') | tools/testing/dart/test_options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698