Pyrogenesis HEAD
Pyrogenesis, a RTS Engine
cpu.h
Go to the documentation of this file.
1/* Copyright (C) 2022 Wildfire Games.
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining
4 * a copy of this software and associated documentation files (the
5 * "Software"), to deal in the Software without restriction, including
6 * without limitation the rights to use, copy, modify, merge, publish,
7 * distribute, sublicense, and/or sell copies of the Software, and to
8 * permit persons to whom the Software is furnished to do so, subject to
9 * the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included
12 * in all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
17 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
19 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
20 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 */
22
23/*
24 * CPU and memory detection.
25 */
26
27#ifndef INCLUDED_CPU
28#define INCLUDED_CPU
29
30#include "lib/sysdep/compiler.h"
31
32
33namespace ERR
34{
35 const Status CPU_FEATURE_MISSING = -130000;
36 const Status CPU_UNKNOWN_OPCODE = -130001;
37 const Status CPU_UNKNOWN_VENDOR = -130002;
38
39}
40
41
42//-----------------------------------------------------------------------------
43// CPU detection
44
45/**
46 * @return string identifying the CPU (usually a cleaned-up version of the
47 * brand string)
48 **/
49const char* cpu_IdentifierString();
50
51
52/**
53 * pause in spin-wait loops, as a performance optimisation.
54 **/
55inline void cpu_Pause()
56{
57#if MSC_VERSION && ARCH_X86_X64
58 _mm_pause();
59#elif GCC_VERSION && ARCH_X86_X64
60 __asm__ __volatile__( "rep; nop" : : : "memory" );
61#endif
62}
63
64#endif // #ifndef INCLUDED_CPU
const char * cpu_IdentifierString()
Routines specific to E2K (MCST Elbrus 2000)
Definition: aarch64.cpp:38
void cpu_Pause()
pause in spin-wait loops, as a performance optimisation.
Definition: cpu.h:55
Definition: debug.h:395
const Status CPU_UNKNOWN_VENDOR
Definition: cpu.h:37
const Status CPU_FEATURE_MISSING
Definition: cpu.h:35
const Status CPU_UNKNOWN_OPCODE
Definition: cpu.h:36
i64 Status
Error handling system.
Definition: status.h:173