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

Side by Side Diff: tools/utils.py

Issue 1904153003: DBC: Adds simdbc64 target, adds arm64 arithmetic overflow logic (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix stack overflow area size 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
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 # This file contains a set of utilities functions used by other Python-based 5 # This file contains a set of utilities functions used by other Python-based
6 # scripts. 6 # scripts.
7 7
8 import commands 8 import commands
9 import datetime 9 import datetime
10 import json 10 import json
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 'armv6': 'arm', 234 'armv6': 'arm',
235 'armv5te': 'arm', 235 'armv5te': 'arm',
236 'arm64': 'arm', 236 'arm64': 'arm',
237 'mips': 'mips', 237 'mips': 'mips',
238 'simarm': 'ia32', 238 'simarm': 'ia32',
239 'simarmv6': 'ia32', 239 'simarmv6': 'ia32',
240 'simarmv5te': 'ia32', 240 'simarmv5te': 'ia32',
241 'simmips': 'ia32', 241 'simmips': 'ia32',
242 'simarm64': 'ia32', 242 'simarm64': 'ia32',
243 'simdbc': 'ia32', 243 'simdbc': 'ia32',
244 'simdbc64': 'ia32',
244 } 245 }
245 246
246 ARCH_GUESS = GuessArchitecture() 247 ARCH_GUESS = GuessArchitecture()
247 BASE_DIR = os.path.abspath(os.path.join(os.curdir, '..')) 248 BASE_DIR = os.path.abspath(os.path.join(os.curdir, '..'))
248 DART_DIR = os.path.abspath(os.path.join(__file__, '..', '..')) 249 DART_DIR = os.path.abspath(os.path.join(__file__, '..', '..'))
249 VERSION_FILE = os.path.join(DART_DIR, 'tools', 'VERSION') 250 VERSION_FILE = os.path.join(DART_DIR, 'tools', 'VERSION')
250 251
251 def GetBuildbotGSUtilPath(): 252 def GetBuildbotGSUtilPath():
252 gsutil = '/b/build/scripts/slave/gsutil' 253 gsutil = '/b/build/scripts/slave/gsutil'
253 if platform.system() == 'Windows': 254 if platform.system() == 'Windows':
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
651 os.chdir(self._working_directory) 652 os.chdir(self._working_directory)
652 653
653 def __exit__(self, *_): 654 def __exit__(self, *_):
654 print "Enter directory = ", self._old_cwd 655 print "Enter directory = ", self._old_cwd
655 os.chdir(self._old_cwd) 656 os.chdir(self._old_cwd)
656 657
657 658
658 if __name__ == "__main__": 659 if __name__ == "__main__":
659 import sys 660 import sys
660 Main() 661 Main()
OLDNEW
« runtime/vm/simulator_dbc.h ('K') | « tools/testing/dart/test_options.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698