mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
161 lines
3 KiB
C++
161 lines
3 KiB
C++
#include "Malloc.h"
|
|
|
|
#include <stdio.h>
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <time.h>
|
|
#include <vector>
|
|
#include <algorithm>
|
|
#include <map>
|
|
#include <deque>
|
|
#include <string>
|
|
|
|
#define TEST_HASHMAP
|
|
|
|
#ifdef TEST_HASHMAP
|
|
|
|
#ifdef COMPILER_GCC
|
|
#include <tr1/unordered_map>
|
|
#else
|
|
#include <hash_map>
|
|
#endif
|
|
|
|
#endif
|
|
|
|
using namespace std;
|
|
using namespace Upp;
|
|
|
|
#ifndef _DEBUG
|
|
#define NO_OUTPUT // for benchmark purposes, output is omitted
|
|
#endif
|
|
|
|
void BenchNTL(const char *file) {
|
|
FileIn in(file);
|
|
if (!in) {
|
|
std::cout << "Cannot open input file.\n";
|
|
return;
|
|
}
|
|
|
|
VectorMap<String, Vector<int> > map;
|
|
int line = 1;
|
|
|
|
for(;;) {
|
|
int c = in.Get();
|
|
if(c < 0) break;
|
|
if(IsAlpha(c) || c == '_') {
|
|
String id;
|
|
id.Cat(c);
|
|
c = in.Get();
|
|
while(c >= 0 && (IsAlNum(c) || c == '_')) {
|
|
id.Cat(c);
|
|
c = in.Get();
|
|
}
|
|
map.GetAdd(id).Add(line);
|
|
}
|
|
else
|
|
if(IsDigit(c))
|
|
do c = in.Get();
|
|
while(c >= 0 && (IsAlNum(c) || c == '.'));
|
|
if(c == '\n')
|
|
++line;
|
|
}
|
|
|
|
Vector<int> order = GetSortOrder(map.GetKeys());
|
|
#ifndef NO_OUTPUT
|
|
for(int i = 0; i < order.GetCount(); i++) {
|
|
std::cout << ~map.GetKey(order[i]) << ": ";
|
|
const Vector<int>& l = map[order[i]];
|
|
for(int i = 0; i < l.GetCount(); i++) {
|
|
if(i) std::cout << ", ";
|
|
std::cout << l[i];
|
|
}
|
|
std::cout << '\n';
|
|
}
|
|
#endif
|
|
}
|
|
|
|
template <class Container>
|
|
void BenchSTL(Container& imap, const char *file) {
|
|
std::ifstream in(file);
|
|
if (!in) {
|
|
std::cout << "Cannot open input file.\n";
|
|
return;
|
|
}
|
|
|
|
int line = 1;
|
|
|
|
for(;;) {
|
|
int c = in.get();
|
|
if(c == EOF) break;
|
|
if(isalpha(c) || c == '_') {
|
|
string id;
|
|
id += c;
|
|
c = in.get();
|
|
while(c != EOF && (isalnum(c) || c == '_')) {
|
|
id += c;
|
|
c = in.get();
|
|
}
|
|
imap[id].push_back(line);
|
|
}
|
|
else
|
|
if(isdigit(c))
|
|
do c = in.get();
|
|
while(c != EOF && (isalnum(c) || c == '.'));
|
|
if(c == '\n')
|
|
++line;
|
|
}
|
|
}
|
|
|
|
void BenchMap(const char *file)
|
|
{
|
|
map< string, vector<int> > imap;
|
|
BenchSTL(imap, file);
|
|
#ifndef NO_OUTPUT
|
|
map< std::string, vector<int> >::const_iterator e = imap.end();
|
|
for(map< std::string, vector<int> >::const_iterator i = imap.begin(); i != e; i++) {
|
|
std::cout << i->first << ": ";
|
|
vector<int>::const_iterator e = i->second.end();
|
|
vector<int>::const_iterator b = i->second.begin();
|
|
for(vector<int>::const_iterator j = b; j != e; j++) {
|
|
if(j != b) std::cout << ", ";
|
|
std::cout << *j;
|
|
}
|
|
std::cout << '\n';
|
|
}
|
|
#endif
|
|
}
|
|
|
|
#ifdef _DEBUG
|
|
#define N 1
|
|
#else
|
|
#define N 1//00000
|
|
#endif
|
|
|
|
void IdMapBenchmark()
|
|
{
|
|
String fn;
|
|
int argc = CommandLine().GetCount();
|
|
const Vector<String>& argv = CommandLine();
|
|
if(argc < 1)
|
|
fn = GetDataFile("idmap.cpp");
|
|
else
|
|
fn = argv[0];
|
|
|
|
BenchNTL(fn); // first run to cache the file
|
|
|
|
if(0) {
|
|
RTIMING("STL");
|
|
BenchMap(fn);
|
|
TimeStop tm;
|
|
for(int n = 0; n < N; n++)
|
|
BenchMap(fn);
|
|
}
|
|
|
|
{
|
|
RTIMING("NTL");
|
|
BenchNTL(fn);
|
|
TimeStop tm;
|
|
for(int n = 0; n < N; n++)
|
|
BenchNTL(fn);
|
|
}
|
|
}
|