Windows PowerShell command on Get-command getisax
MyWebUniversity

Manual Pages for UNIX Operating System command usage for man getisax

System Calls getisax(2)

NAME

getisax - extract valid instruction set extensions

SYNOPSIS

#include

uint_t getisax(uint32_t *array, uint_t n);

DESCRIPTION

The getisax() function sets the vector array of n 32-bit

integers to contain the bits from the AV_xxx_yyy namespace

of the given instruction set architecture.

Values for AV_xxx_yyy for SPARC and SPARCV9, and their asso-

ciated descriptions, can be found in .

Values for AV_xxx_yyy for i386 and AMD64, and their associ-

ated descriptions, can be found in .

RETURN VALUES

The getisax() function returns the number of array elements

that contain non-zero values.

EXAMPLES

Example 1 Use getisax() to determine if the SSE2 instruction

set is present. In the following example, if the message is written, the SSE2 instruction set is present and fully supportred by the operating system.

uint_t ui;

(void) getisax(&ui, 1);

if (ui & AV_386_SSE2)

printf("SSE2 instruction set extension is present.\n");

ATTRIBUTES

See attributes(5) for descriptions of the following attri-

butes:

SunOS 5.11 Last change: 7 bNov 2007 1

System Calls getisax(2)

____________________________________________________________

| ATTRIBUTE TYPE | ATTRIBUTE VALUE |

|_____________________________|_____________________________|

| Interface Stability | Committed |

|_____________________________|_____________________________|

| MT-Level | Safe |

|_____________________________|_____________________________|

SEE ALSO

isainfo(1), ld(1), pargs(1), attributes(5) Linker and Libraries Guide SPARC Assembly Language Reference Manual x86 Assembly Language Reference Manual

SunOS 5.11 Last change: 7 bNov 2007 2




Contact us      |      About us      |      Term of use      |       Copyright © 2000-2019 MyWebUniversity.com ™