2003-11-01 20:11:29 +01:00
|
|
|
/*
|
2005-06-05 11:16:00 +02:00
|
|
|
* Copyright (c) 2003-2005 The Regents of The University of Michigan
|
2003-11-01 20:11:29 +01:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-06-01 01:26:56 +02:00
|
|
|
*
|
|
|
|
* Authors: Nathan Binkert
|
2003-11-01 20:11:29 +01:00
|
|
|
*/
|
|
|
|
|
2008-12-03 13:57:54 +01:00
|
|
|
#ifdef linux
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <sched.h>
|
|
|
|
#endif
|
|
|
|
|
2003-11-02 07:08:59 +01:00
|
|
|
#include <inttypes.h>
|
2008-12-03 13:57:53 +01:00
|
|
|
#include <err.h>
|
|
|
|
#include <fcntl.h>
|
2003-11-01 19:20:44 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2006-08-18 01:16:03 +02:00
|
|
|
#include <unistd.h>
|
2003-11-01 19:20:44 +01:00
|
|
|
|
|
|
|
#include "m5op.h"
|
|
|
|
|
|
|
|
char *progname;
|
2008-12-03 13:57:53 +01:00
|
|
|
char *command = "unspecified";
|
|
|
|
void usage();
|
2003-11-01 19:20:44 +01:00
|
|
|
|
|
|
|
void
|
2008-12-03 13:57:53 +01:00
|
|
|
parse_int_args(int argc, char *argv[], uint64_t ints[], int len)
|
2003-11-01 19:20:44 +01:00
|
|
|
{
|
2008-12-03 13:57:53 +01:00
|
|
|
if (argc > len)
|
|
|
|
usage();
|
2003-11-01 19:20:44 +01:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < len; ++i)
|
|
|
|
ints[i] = (i < argc) ? strtoul(argv[i], NULL, 0) : 0;
|
|
|
|
}
|
2003-11-02 07:08:59 +01:00
|
|
|
|
2003-11-01 19:20:44 +01:00
|
|
|
int
|
2008-12-03 13:57:53 +01:00
|
|
|
read_file(int dest_fid)
|
2003-11-01 19:20:44 +01:00
|
|
|
{
|
2008-12-03 13:57:53 +01:00
|
|
|
char buf[256*1024];
|
|
|
|
int offset = 0;
|
|
|
|
int len;
|
2003-11-01 19:20:44 +01:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
while ((len = m5_readfile(buf, sizeof(buf), offset)) > 0) {
|
|
|
|
write(dest_fid, buf, len);
|
|
|
|
offset += len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
do_exit(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
if (argc > 1)
|
2003-11-01 19:20:44 +01:00
|
|
|
usage();
|
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
m5_exit((argc > 0) ? strtoul(argv[0], NULL, 0) : 0);
|
|
|
|
}
|
2003-11-02 07:08:59 +01:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
void
|
|
|
|
do_reset_stats(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
uint64_t ints[2];
|
|
|
|
parse_int_args(argc, argv, ints, 2);
|
|
|
|
m5_reset_stats(ints[0], ints[1]);
|
|
|
|
}
|
2003-11-02 07:08:59 +01:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
void
|
|
|
|
do_dump_stats(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
uint64_t ints[2];
|
|
|
|
parse_int_args(argc, argv, ints, 2);
|
|
|
|
m5_dump_stats(ints[0], ints[1]);
|
|
|
|
}
|
2003-11-02 07:08:59 +01:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
void
|
|
|
|
do_dump_reset_stats(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
uint64_t ints[2];
|
|
|
|
parse_int_args(argc, argv, ints, 2);
|
|
|
|
m5_dumpreset_stats(ints[0], ints[1]);
|
|
|
|
}
|
2003-11-01 19:20:44 +01:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
void
|
|
|
|
do_read_file(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
if (argc > 0)
|
|
|
|
usage();
|
2003-11-02 07:08:59 +01:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
read_file(STDOUT_FILENO);
|
|
|
|
}
|
2003-11-02 07:08:59 +01:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
void
|
|
|
|
do_exec_file(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
if (argc > 0)
|
|
|
|
usage();
|
2003-11-02 07:08:59 +01:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
const char *destname = "/tmp/execfile";
|
2003-11-02 07:08:59 +01:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
int fid = open(destname, O_WRONLY, 0777);
|
|
|
|
int len = read_file(fid);
|
|
|
|
close(fid);
|
|
|
|
if (len > 0) {
|
|
|
|
execl(destname, "execfile", NULL);
|
|
|
|
err(1, "execl failed!");
|
2003-11-02 07:08:59 +01:00
|
|
|
}
|
2008-12-03 13:57:53 +01:00
|
|
|
}
|
2003-11-02 07:08:59 +01:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
void
|
|
|
|
do_checkpoint(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
uint64_t ints[2];
|
|
|
|
parse_int_args(argc, argv, ints, 2);
|
|
|
|
m5_checkpoint(ints[0], ints[1]);
|
|
|
|
}
|
2003-11-02 07:08:59 +01:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
void
|
|
|
|
do_load_symbol(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
if (argc != 2)
|
|
|
|
usage();
|
2006-08-23 22:57:07 +02:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
uint64_t addr = strtoul(argv[0], NULL, 0);
|
|
|
|
char *symbol = argv[1];
|
|
|
|
m5_loadsymbol(addr, symbol);
|
|
|
|
}
|
2006-08-23 22:57:07 +02:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
void
|
|
|
|
do_initparam(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
if (argc != 0)
|
|
|
|
usage();
|
2006-08-23 22:57:07 +02:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
|
|
|
|
printf("%ld", m5_initparam());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
do_sw99param(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
if (argc != 0)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
uint64_t param = m5_initparam();
|
|
|
|
|
|
|
|
// run-time, rampup-time, rampdown-time, warmup-time, connections
|
|
|
|
printf("%d %d %d %d %d", (param >> 48) & 0xfff,
|
|
|
|
(param >> 36) & 0xfff, (param >> 24) & 0xfff,
|
|
|
|
(param >> 12) & 0xfff, (param >> 0) & 0xfff);
|
|
|
|
}
|
|
|
|
|
2008-12-03 13:57:54 +01:00
|
|
|
#ifdef linux
|
|
|
|
void
|
|
|
|
do_pin(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
if (argc < 2)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
cpu_set_t mask;
|
|
|
|
CPU_ZERO(&mask);
|
|
|
|
|
|
|
|
const char *sep = ",";
|
|
|
|
char *target = strtok(argv[0], sep);
|
|
|
|
while (target) {
|
|
|
|
CPU_SET(atoi(target), &mask);
|
|
|
|
target = strtok(NULL, sep);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sched_setaffinity(0, sizeof(cpu_set_t), &mask) < 0)
|
|
|
|
err(1, "setaffinity");
|
|
|
|
|
|
|
|
execvp(argv[1], &argv[1]);
|
|
|
|
err(1, "execvp failed!");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
struct MainFunc
|
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
void (*func)(int argc, char *argv[]);
|
|
|
|
char *usage;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MainFunc mainfuncs[] = {
|
|
|
|
{ "exit", do_exit, "[delay]" },
|
|
|
|
{ "resetstats", do_reset_stats, "[delay [period]]" },
|
|
|
|
{ "dumpstats", do_dump_stats, "[delay [period]]" },
|
|
|
|
{ "dumpresetstats", do_dump_reset_stats, "[delay [period]]" },
|
|
|
|
{ "readfile", do_read_file, "[filename]" },
|
|
|
|
{ "execfile", do_exec_file, "<filename>" },
|
|
|
|
{ "checkpoint", do_checkpoint, "[delay [period]]" },
|
|
|
|
{ "loadsymbol", do_load_symbol, "<address> <symbol>" },
|
|
|
|
{ "initparam", do_initparam, "" },
|
|
|
|
{ "sw99param", do_sw99param, "" },
|
2008-12-03 13:57:54 +01:00
|
|
|
#ifdef linux
|
|
|
|
{ "pin", do_pin, "<cpu> <program> [args ...]" }
|
|
|
|
#endif
|
2008-12-03 13:57:53 +01:00
|
|
|
};
|
|
|
|
int numfuncs = sizeof(mainfuncs) / sizeof(mainfuncs[0]);
|
|
|
|
|
|
|
|
void
|
|
|
|
usage()
|
|
|
|
{
|
|
|
|
int i;
|
2006-08-23 22:57:07 +02:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
for (i = 0; i < numfuncs; ++i) {
|
|
|
|
char *header = i ? "" : "usage:";
|
|
|
|
fprintf(stderr, "%-6s %s %s %s\n",
|
|
|
|
header, progname, mainfuncs[i].name, mainfuncs[i].usage);
|
2003-11-01 19:20:44 +01:00
|
|
|
}
|
2008-12-03 13:57:53 +01:00
|
|
|
fprintf(stderr, "\n");
|
|
|
|
fprintf(stderr, "All times in nanoseconds!\n");
|
2003-11-01 19:20:44 +01:00
|
|
|
|
2008-12-03 13:57:53 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
progname = argv[0];
|
|
|
|
if (argc < 2)
|
|
|
|
usage(1);
|
|
|
|
|
|
|
|
command = argv[1];
|
|
|
|
|
|
|
|
argv += 2;
|
|
|
|
argc -= 2;
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < numfuncs; ++i) {
|
|
|
|
if (strcmp(command, mainfuncs[i].name) != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
mainfuncs[i].func(argc, argv);
|
|
|
|
exit(0);
|
2007-02-22 03:06:17 +01:00
|
|
|
}
|
2008-12-03 13:57:53 +01:00
|
|
|
|
|
|
|
usage(1);
|
2003-11-01 19:20:44 +01:00
|
|
|
}
|