.\" Copyright (c) 2007 Hypertriton, Inc.
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
.\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
.\" (INCLUDING BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
.\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
.\" IN ANY WAY OUT OF THE USE OF THIS SOFTWARE EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd November 18, 2007
.Dt AG_CPUINFO 3
.Os
.ds vT Agar API Reference
.ds oS Agar 1.3
.Sh NAME
.Nm AG_CPUInfo
.Nd agar architecture information structure
.Sh SYNOPSIS
.Bd -literal
#include
.Ed
.Sh DESCRIPTION
The agar
.Nm
interface provides some information about the current architecture and
architecture extensions.
.Sh INTERFACE
.nr nS 1
.Ft "void"
.Fn AG_GetCPUInfo "AG_CPUInfo *info"
.Pp
.nr nS 0
The
.Fn AG_GetCPUInfo
function returns CPU information into an existing
.Fa info
structure.
.Sh STRUCTURE DATA
For the
.Fa AG_CPUInfo
structure:
.Bl -tag -width "char vendorID[13] "
.It const char *arch
A string describing the architecture (e.g., "alpha", "i386", etc).
.It char vendorID[13]
A vendor ID string (architecture-specific).
.It Uint32 ext
A list of architecture extensions that have some relevance to user
applications (see
.Dq ARCHITECTURE EXTENSIONS
below).
.El
.Sh ARCHITECTURE EXTENSIONS
The
.Fa ext
field can contain the following flags:
.Bl -tag -compact -width "AG_EXT_3DNOW_PREFETCH "
.It AG_EXT_CPUID
The i386 CPUID instruction is supported.
.It AG_EXT_MMX
MMX instructions are available.
.It AG_EXT_MMX_EXT
AMD extensions to MMX are available.
.It AG_EXT_3DNOW
3dNow! is supported.
.It AG_EXT_3DNOW_EXT
Extended 3dNow! is supported.
.It AG_EXT_ALTIVEC
AltiVec instructions are supported.
.It AG_EXT_SSE
Streaming SIMD extensions are supported.
.It AG_EXT_SSE2
SSE2 extensions are supported.
.It AG_EXT_SSE3
SSE3 (PNI) extensions are supported.
.It AG_EXT_LONG_MODE
Long mode is available.
.It AG_EXT_RDTSCP
The RDTSCP instruction exists.
.It AG_EXT_FXSR
Fast FXSAVE/FXSTOR is available.
.It AG_EXT_PAGE_NX
The per-page no-execute bit (W^X) is supported.
.It AG_EXT_SSE5A
SSE5A extensions are available.
.It AG_EXT_3DNOW_PREFETCH
The PREFETCH and PREFETCHW instructions for 3dNow! are available.
.It AG_EXT_SSE_MISALIGNED
Misaligned SSE mode is supported.
.It AG_EXT_SSE4A
SSE4A extensions are available.
.It AG_EXT_ONCHIP_FPU
The floating point unit is on-chip.
.It AG_EXT_TSC
The Time Stamp Counter is available.
.It AG_EXT_CMOV
The CMOV (Conditional Move) instruction exists.
.It AG_EXT_CLFLUSH
The CLFLUSH (Cache Line Flush) instruction exists.
.It AG_EXT_HTT
Hyper-Threading technology is supported.
.It AG_EXT_MON
MONITOR and MWAIT instructions exist.
.It AG_EXT_VMX
Virtual Machine Extensions are available.
.It AG_EXT_SSSE3
SSSE3 extensions are available.
.It AG_EXT_SSE41
SSE4.1 extensions are available.
.It AG_EXT_SSE42
SSE4.2 extensions are available.
.El
.Sh SEE ALSO
.Xr AG_Intro 3
.Sh HISTORY
The
.Nm
interface first appeared in Agar 1.3.