comparison mx/mx_graal.py @ 13511:51e16c7a5685

remove unmaintained 'graal visualizer'
author Bernhard Urban <bernhard.urban@jku.at>
date Sat, 04 Jan 2014 02:08:33 +0200
parents a8831418ff04
children 0fbee3eb71f0
comparison
equal deleted inserted replaced
13510:294962c0f3f7 13511:51e16c7a5685
1125 def longtests(args): 1125 def longtests(args):
1126 1126
1127 deoptalot(['15', '-Xmx48m']) 1127 deoptalot(['15', '-Xmx48m'])
1128 1128
1129 dacapo(['100', 'eclipse', '-esa']) 1129 dacapo(['100', 'eclipse', '-esa'])
1130
1131 def gv(args):
1132 """run the Graal Visualizer"""
1133 with open(join(_graal_home, '.graal_visualizer.log'), 'w') as fp:
1134 mx.logv('[Graal Visualizer log is in ' + fp.name + ']')
1135 if not exists(join(_graal_home, 'visualizer', 'build.xml')):
1136 mx.logv('[This initial execution may take a while as the NetBeans platform needs to be downloaded]')
1137 mx.run(['ant', '-f', join(_graal_home, 'visualizer', 'build.xml'), '-l', fp.name, 'run'])
1138 1130
1139 def igv(args): 1131 def igv(args):
1140 """run the Ideal Graph Visualizer""" 1132 """run the Ideal Graph Visualizer"""
1141 with open(join(_graal_home, '.ideal_graph_visualizer.log'), 'w') as fp: 1133 with open(join(_graal_home, '.ideal_graph_visualizer.log'), 'w') as fp:
1142 mx.logv('[Ideal Graph Visualizer log is in ' + fp.name + ']') 1134 mx.logv('[Ideal Graph Visualizer log is in ' + fp.name + ']')
1515 'scaladacapo': [scaladacapo, '[VM options] benchmarks...|"all" [Scala DaCapo options]'], 1507 'scaladacapo': [scaladacapo, '[VM options] benchmarks...|"all" [Scala DaCapo options]'],
1516 'specjvm2008': [specjvm2008, '[VM options] benchmarks...|"all" [SPECjvm2008 options]'], 1508 'specjvm2008': [specjvm2008, '[VM options] benchmarks...|"all" [SPECjvm2008 options]'],
1517 'specjbb2013': [specjbb2013, '[VM options] [-- [SPECjbb2013 options]]'], 1509 'specjbb2013': [specjbb2013, '[VM options] [-- [SPECjbb2013 options]]'],
1518 'specjbb2005': [specjbb2005, '[VM options] [-- [SPECjbb2005 options]]'], 1510 'specjbb2005': [specjbb2005, '[VM options] [-- [SPECjbb2005 options]]'],
1519 'gate' : [gate, '[-options]'], 1511 'gate' : [gate, '[-options]'],
1520 'gv' : [gv, ''],
1521 'bench' : [bench, '[-resultfile file] [all(default)|dacapo|specjvm2008|bootstrap]'], 1512 'bench' : [bench, '[-resultfile file] [all(default)|dacapo|specjvm2008|bootstrap]'],
1522 'unittest' : [unittest, '[VM options] [filters...]', _unittestHelpSuffix], 1513 'unittest' : [unittest, '[VM options] [filters...]', _unittestHelpSuffix],
1523 'longunittest' : [longunittest, '[VM options] [filters...]', _unittestHelpSuffix], 1514 'longunittest' : [longunittest, '[VM options] [filters...]', _unittestHelpSuffix],
1524 'shortunittest' : [shortunittest, '[VM options] [filters...]', _unittestHelpSuffix], 1515 'shortunittest' : [shortunittest, '[VM options] [filters...]', _unittestHelpSuffix],
1525 'jacocoreport' : [jacocoreport, '[output directory]'], 1516 'jacocoreport' : [jacocoreport, '[output directory]'],