From 939597fb21015670131dbd843b1dc823843aa84c Mon Sep 17 00:00:00 2001 From: Evan Martin Date: Tue, 24 May 2011 10:07:08 -0700 Subject: add a test program for evaluating depfile parse speed --- configure.py | 7 +++++++ src/parser_perftest.cc | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 src/parser_perftest.cc diff --git a/configure.py b/configure.py index cb9a22b..79a9a10 100755 --- a/configure.py +++ b/configure.py @@ -136,6 +136,7 @@ n.comment('Main executable is library plus main() function.') objs = cxx('ninja') n.build('ninja', 'link', objs, implicit=ninja_lib, variables=[('libs', '-L$builddir -lninja')]) +n.newline() n.comment('Tests all build into ninja_test executable.') objs = [] @@ -151,6 +152,12 @@ n.build('ninja_test', 'link', objs, implicit=ninja_lib, ('ldflags', ' '.join(ldflags))]) n.newline() +n.comment('Perftest executable.') +objs = cxx('parser_perftest') +n.build('parser_perftest', 'link', objs, implicit=ninja_lib, + variables=[('libs', '-L$builddir -lninja')]) +n.newline() + n.comment('Generate a graph using the "graph" tool.') n.rule('gendot', command='./ninja -t graph > $out') diff --git a/src/parser_perftest.cc b/src/parser_perftest.cc new file mode 100644 index 0000000..1321629 --- /dev/null +++ b/src/parser_perftest.cc @@ -0,0 +1,57 @@ +// Copyright 2011 Google Inc. All Rights Reserved. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include + +#include "parsers.h" +#include "util.h" + +int main(int argc, char* argv[]) { + if (argc < 2) { + printf("usage: %s \n", argv[0]); + return 1; + } + + for (int i = 1; i < argc; ++i) { + const char* filename = argv[i]; + + for (int limit = 1 << 10; limit < (1<<20); limit *= 2) { + int64_t start = GetTimeMillis(); + for (int rep = 0; rep < limit; ++rep) { + string buf; + string err; + if (ReadFile(filename, &buf, &err) < 0) { + printf("%s: %s\n", filename, err.c_str()); + return 1; + } + + MakefileParser parser; + if (!parser.Parse(buf, &err)) { + printf("%s: %s\n", filename, err.c_str()); + return 1; + } + } + int64_t end = GetTimeMillis(); + + if (end - start > 100) { + int delta = (int)(end - start); + printf("%s: %.2fus\n", filename, (float)(delta*1000 / (float)limit)); + break; + } + } + } + + return 0; +} -- cgit v0.12