gem5 v24.0.0.0
Loading...
Searching...
No Matches
hostinfo.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2003-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 "base/hostinfo.hh"
30
31#ifdef __APPLE__
32#include <mach/mach_init.h>
33#include <mach/shared_region.h>
34#include <mach/task.h>
35#else
36#include <cstdio>
37#endif
38
39#include "base/logging.hh"
40#include "base/str.hh"
41
42namespace gem5
43{
44
45#ifndef __APPLE__
46uint64_t
47procInfo(const char *filename, const char *target)
48{
49 int done = 0;
50 char line[80];
51 char format[80];
52 long usage;
53
54 FILE *fp = fopen(filename, "r");
55
56 while (fp && !feof(fp) && !done) {
57 if (fgets(line, 80, fp)) {
58 if (startswith(line, target)) {
59 snprintf(format, sizeof(format), "%s %%ld", target);
60 sscanf(line, format, &usage);
61
62 fclose(fp);
63 return usage;
64 }
65 }
66 }
67
68 if (fp)
69 fclose(fp);
70
71 return 0;
72}
73#endif
74
75uint64_t
77{
78// For the Mach-based Darwin kernel, use the task_info of the self task
79#ifdef __APPLE__
80 struct task_basic_info t_info;
81 mach_msg_type_number_t t_info_count = TASK_BASIC_INFO_COUNT;
82
83 if (KERN_SUCCESS != task_info(mach_task_self(),
84 TASK_BASIC_INFO, (task_info_t)&t_info,
85 &t_info_count)) {
86 return 0;
87 }
88
89 // Mimic Darwin's implementation of top and subtract
90 // SHARED_REGION_SIZE from the tasks virtual size to account for the
91 // shared memory submap that is incorporated into every process.
92 return (t_info.virtual_size - SHARED_REGION_SIZE) / 1024;
93#else
94 // Linux implementation
95 return procInfo("/proc/self/status", "VmSize:");
96#endif
97}
98
99} // namespace gem5
Bitfield< 31, 29 > format
Bitfield< 19, 16 > fp
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
bool startswith(const char *s, const char *prefix)
Return true if 's' starts with the prefix string 'prefix'.
Definition str.hh:230
uint64_t memUsage()
Determine the simulator process' total virtual memory usage.
Definition hostinfo.cc:76
uint64_t procInfo(const char *filename, const char *target)
Definition hostinfo.cc:47

Generated on Tue Jun 18 2024 16:24:00 for gem5 by doxygen 1.11.0