2 * Copyright 2014 Sony Mobile Communications Inc.
4 * Licensed under the terms of the GNU GPL License version 2
6 * Selftest for runtime system size
8 * Prints the amount of RAM that the currently running system is using.
10 * This program tries to be as small as possible itself, to
11 * avoid perturbing the system memory utilization with its
12 * own execution. It also attempts to have as few dependencies
13 * on kernel features as possible.
15 * It should be statically linked, with startup libs avoided. It uses
16 * no library calls except the syscall() function for the following 3
18 * sysinfo(), write(), and _exit()
20 * For output, it avoids printf (which in some C libraries
21 * has large external dependencies) by implementing it's own
22 * number output and print routines, and using __builtin_strlen()
24 * The test may crash if any of the above syscalls fails because in some
25 * libc implementations (e.g. the GNU C Library) errno is saved in
26 * thread-local storage, which does not get initialized due to avoiding
30 #include <sys/sysinfo.h>
32 #include <sys/syscall.h>
34 #define STDOUT_FILENO 1
36 static int print(const char *s
)
40 while (s
[len
] != '\0')
43 return syscall(SYS_write
, STDOUT_FILENO
, s
, len
);
46 static inline char *num_to_str(unsigned long num
, char *buf
, int len
)
50 /* put digits in buffer from back to front */
55 *(--buf
) = digit
+ '0';
62 static int print_num(unsigned long num
)
66 return print(num_to_str(num
, num_buf
, sizeof(num_buf
)));
69 static int print_k_value(const char *s
, unsigned long num
, unsigned long units
)
71 unsigned long long temp
;
77 temp
= (temp
* units
)/1024;
79 ccode
= print_num(num
);
84 /* this program has no main(), as startup libraries are not used */
90 static const char *test_name
= " get runtime memory use\n";
92 print("TAP version 13\n");
93 print("# Testing system size.\n");
95 ccode
= syscall(SYS_sysinfo
, &info
);
99 print(" ---\n reason: \"could not get sysinfo\"\n ...\n");
100 syscall(SYS_exit
, ccode
);
105 /* ignore cache complexities for now */
106 used
= info
.totalram
- info
.freeram
- info
.bufferram
;
107 print("# System runtime memory report (units in Kilobytes):\n");
109 print_k_value(" Total: ", info
.totalram
, info
.mem_unit
);
110 print_k_value(" Free: ", info
.freeram
, info
.mem_unit
);
111 print_k_value(" Buffer: ", info
.bufferram
, info
.mem_unit
);
112 print_k_value(" In use: ", used
, info
.mem_unit
);
116 syscall(SYS_exit
, 0);