blob: 76e6200d4150d1997ce4b10b5e688f4630b71e90 [file] [log] [blame]
#!/usr/bin/env dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:kernel/kernel.dart';
import 'package:kernel/class_hierarchy.dart';
import 'dart:io';
/// Builds N copies of the class hierarchy for the given program.
/// Pass --print-metrics to the Dart VM to measure the memory use.
main(List<String> args) {
if (args.length == 0) {
print('USAGE: class_hierarchy_membench FILE.bart NUM_COPIES');
exit(1);
}
Program program = loadProgramFromBinary(args[0]);
const int defaultCopyCount = 300;
int copyCount = args.length == 2 ? int.parse(args[1]) : defaultCopyCount;
List<ClassHierarchy> keepAlive = <ClassHierarchy>[];
for (int i = 0; i < copyCount; ++i) {
keepAlive.add(new ClassHierarchy(program));
}
print('$copyCount copies built');
if (args.contains('-v')) {
// Use of the list for something to avoid premature GC.
int size = 0;
for (var classHierarchy in keepAlive) {
size += classHierarchy.getSuperTypeHashTableSize();
}
print(size);
}
}