/* * Copyright (C) 2013-2020 Canonical, Ltd. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * This code is a complete clean re-write of the stress tool by * Colin Ian King and attempts to be * backwardly compatible with the stress tool by Amos Waterland * but has more stress tests and more * functionality. * */ #include "stress-ng.h" static const stress_help_t help[] = { { NULL, "nop N", "start N workers that burn cycles with no-ops" }, { NULL, "nop-ops N", "stop after N nop bogo no-op operations" }, { NULL, NULL, NULL } }; #if defined(HAVE_ASM_NOP) #if defined(NOP) #undef NOP #endif #if defined(NOP8) #undef NOP8 #endif #if defined(NOP64) #undef NOP64 #endif #define NOP __asm__ __volatile__("nop;") #define NOP8 NOP; NOP; NOP; NOP; NOP; NOP; NOP; NOP; #define NOP64 NOP8; NOP8; NOP8; NOP8; NOP8; NOP8; NOP8; NOP8; /* * stress_nop() * stress that does lots of not a lot */ static int stress_nop(const stress_args_t *args) { do { register int i = 256; while (i--) { NOP64 NOP64 NOP64 NOP64 } inc_counter(args); } while (keep_stressing()); return EXIT_SUCCESS; } stressor_info_t stress_nop_info = { .stressor = stress_nop, .class = CLASS_CPU, .help = help }; #else stressor_info_t stress_nop_info = { .stressor = stress_not_implemented, .class = CLASS_CPU, .help = help }; #endif