gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
cprintftime.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #include <unistd.h>
30 
31 #include <csignal>
32 #include <iostream>
33 #include <list>
34 #include <sstream>
35 #include <string>
36 
37 #include "base/cprintf.hh"
38 
39 volatile int stop = false;
40 
41 void
42 handle_alarm(int signal)
43 {
44  stop = true;
45 }
46 
47 void
48 do_test(int seconds)
49 {
50  stop = false;
51  alarm(seconds);
52 }
53 
54 int
56 {
57  std::stringstream result;
58  int iterations = 0;
59 
60  signal(SIGALRM, handle_alarm);
61 
62  do_test(10);
63  while (!stop) {
64  std::stringstream result;
65  ccprintf(result,
66  "this is a %s of %d iterations %3.2f %p\n",
67  "test", iterations, 51.934, &result);
68 
69  iterations += 1;
70  }
71 
72  cprintf("completed %d iterations of ccprintf in 10s, %f iterations/s\n",
73  iterations, iterations / 10.0);
74 
75  do_test(10);
76  while (!stop) {
77  char result[1024];
78  sprintf(result,
79  "this is a %s of %d iterations %3.2f %p\n",
80  "test", iterations, 51.934, &result);
81 
82  iterations += 1;
83  }
84 
85  cprintf("completed %d iterations of sprintf in 10s, %f iterations/s\n",
86  iterations, iterations / 10.0);
87 
88  return 0;
89 }
do_test
void do_test(int seconds)
Definition: cprintftime.cc:48
stop
volatile int stop
Definition: cprintftime.cc:39
cprintf
void cprintf(const char *format, const Args &...args)
Definition: cprintf.hh:152
cprintf.hh
main
int main()
Definition: cprintftime.cc:55
ccprintf
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
handle_alarm
void handle_alarm(int signal)
Definition: cprintftime.cc:42

Generated on Tue Mar 23 2021 19:41:23 for gem5 by doxygen 1.8.17