blob: ca8a36a03ab0c2e6a364e79d21ca55dd2316bd52 [file] [log] [blame]
Manuel Klimek76f13012011-12-16 13:09:10 +00001//===- JSONBench - Benchmark the JSONParser implementation ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This program executes the JSONParser on differntly sized JSON texts and
11// outputs the run time.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/ADT/Twine.h"
16#include "llvm/Support/CommandLine.h"
17#include "llvm/Support/JSONParser.h"
18#include "llvm/Support/Timer.h"
19#include "llvm/Support/raw_ostream.h"
20
21static llvm::cl::opt<bool>
22Verify("verify", llvm::cl::desc(
23 "Run a quick verification useful for regression testing"),
24 llvm::cl::init(false));
25
Manuel Klimek2c777c82011-12-20 10:34:29 +000026static llvm::cl::opt<unsigned>
Manuel Klimekd21428a2011-12-19 09:32:05 +000027MemoryLimitMB("memory-limit", llvm::cl::desc(
28 "Do not use more megabytes of memory"),
29 llvm::cl::init(1000));
30
Manuel Klimek76f13012011-12-16 13:09:10 +000031void benchmark(llvm::TimerGroup &Group, llvm::StringRef Name,
32 llvm::StringRef JSONText) {
33 llvm::Timer BaseLine((Name + ": Loop").str(), Group);
34 BaseLine.startTimer();
35 char C = 0;
36 for (llvm::StringRef::iterator I = JSONText.begin(),
37 E = JSONText.end();
38 I != E; ++I) { C += *I; }
39 BaseLine.stopTimer();
40 volatile char DontOptimizeOut = C; (void)DontOptimizeOut;
41
42 llvm::Timer Parsing((Name + ": Parsing").str(), Group);
43 Parsing.startTimer();
Manuel Klimek84cbb6f2011-12-21 18:16:39 +000044 llvm::SourceMgr SM;
45 llvm::JSONParser Parser(JSONText, &SM);
Manuel Klimek76f13012011-12-16 13:09:10 +000046 if (!Parser.validate()) {
47 llvm::errs() << "Parsing error in JSON parser benchmark.\n";
48 exit(1);
49 }
50 Parsing.stopTimer();
51}
52
Manuel Klimek5b25cff2011-12-19 09:56:35 +000053std::string createJSONText(size_t MemoryMB, unsigned ValueSize) {
Manuel Klimek76f13012011-12-16 13:09:10 +000054 std::string JSONText;
55 llvm::raw_string_ostream Stream(JSONText);
56 Stream << "[\n";
Manuel Klimek5b25cff2011-12-19 09:56:35 +000057 size_t MemoryBytes = MemoryMB * 1024 * 1024;
Manuel Klimekd21428a2011-12-19 09:32:05 +000058 while (JSONText.size() < MemoryBytes) {
Manuel Klimek76f13012011-12-16 13:09:10 +000059 Stream << " {\n"
60 << " \"key1\": \"" << std::string(ValueSize, '*') << "\",\n"
61 << " \"key2\": \"" << std::string(ValueSize, '*') << "\",\n"
62 << " \"key3\": \"" << std::string(ValueSize, '*') << "\"\n"
63 << " }";
Manuel Klimekd21428a2011-12-19 09:32:05 +000064 Stream.flush();
65 if (JSONText.size() < MemoryBytes) Stream << ",";
Manuel Klimek76f13012011-12-16 13:09:10 +000066 Stream << "\n";
67 }
68 Stream << "]\n";
69 Stream.flush();
70 return JSONText;
71}
72
73int main(int argc, char **argv) {
74 llvm::cl::ParseCommandLineOptions(argc, argv);
75 llvm::TimerGroup Group("JSON parser benchmark");
76 if (Verify) {
Manuel Klimekd21428a2011-12-19 09:32:05 +000077 benchmark(Group, "Fast", createJSONText(10, 500));
Manuel Klimek76f13012011-12-16 13:09:10 +000078 } else {
Manuel Klimekd21428a2011-12-19 09:32:05 +000079 benchmark(Group, "Small Values", createJSONText(MemoryLimitMB, 5));
80 benchmark(Group, "Medium Values", createJSONText(MemoryLimitMB, 500));
81 benchmark(Group, "Large Values", createJSONText(MemoryLimitMB, 50000));
Manuel Klimek76f13012011-12-16 13:09:10 +000082 }
83 return 0;
84}
85