17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5ae115bc7Smrj * Common Development and Distribution License (the "License"). 6ae115bc7Smrj * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 227af88ac7SKuriakose Kuruvilla * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved. 23245ac945SRobert Mustacchi * Copyright (c) 2015, Joyent, Inc. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate #ifndef _SYS_AUXV_386_H 277c478bd9Sstevel@tonic-gate #define _SYS_AUXV_386_H 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gate #ifdef __cplusplus 307c478bd9Sstevel@tonic-gate extern "C" { 317c478bd9Sstevel@tonic-gate #endif 327c478bd9Sstevel@tonic-gate 337c478bd9Sstevel@tonic-gate /* 347c478bd9Sstevel@tonic-gate * Flags used in AT_SUN_HWCAP elements to describe various userland 357c478bd9Sstevel@tonic-gate * instruction set extensions available on different processors. 367c478bd9Sstevel@tonic-gate * The basic assumption is that of the i386 ABI; that is, i386 plus i387 377c478bd9Sstevel@tonic-gate * floating point. 387c478bd9Sstevel@tonic-gate * 397c478bd9Sstevel@tonic-gate * Note that if a given bit is set; the implication is that the kernel 407c478bd9Sstevel@tonic-gate * provides all the underlying architectural support for the correct 417c478bd9Sstevel@tonic-gate * functioning of the extended instruction(s). 427c478bd9Sstevel@tonic-gate */ 437c478bd9Sstevel@tonic-gate #define AV_386_FPU 0x00001 /* x87-style floating point */ 447c478bd9Sstevel@tonic-gate #define AV_386_TSC 0x00002 /* rdtsc insn */ 457c478bd9Sstevel@tonic-gate #define AV_386_CX8 0x00004 /* cmpxchg8b insn */ 467c478bd9Sstevel@tonic-gate #define AV_386_SEP 0x00008 /* sysenter and sysexit */ 477c478bd9Sstevel@tonic-gate #define AV_386_AMD_SYSC 0x00010 /* AMD's syscall and sysret */ 487c478bd9Sstevel@tonic-gate #define AV_386_CMOV 0x00020 /* conditional move insns */ 497c478bd9Sstevel@tonic-gate #define AV_386_MMX 0x00040 /* MMX insns */ 507c478bd9Sstevel@tonic-gate #define AV_386_AMD_MMX 0x00080 /* AMD's MMX insns */ 517c478bd9Sstevel@tonic-gate #define AV_386_AMD_3DNow 0x00100 /* AMD's 3Dnow! insns */ 527c478bd9Sstevel@tonic-gate #define AV_386_AMD_3DNowx 0x00200 /* AMD's 3Dnow! extended insns */ 537c478bd9Sstevel@tonic-gate #define AV_386_FXSR 0x00400 /* fxsave and fxrstor */ 547c478bd9Sstevel@tonic-gate #define AV_386_SSE 0x00800 /* SSE insns and regs */ 557c478bd9Sstevel@tonic-gate #define AV_386_SSE2 0x01000 /* SSE2 insns and regs */ 564e12d685SRod Evans /* 0x02000 withdrawn - do not assign */ 577c478bd9Sstevel@tonic-gate #define AV_386_SSE3 0x04000 /* SSE3 insns and regs */ 584e12d685SRod Evans /* 0x08000 withdrawn - do not assign */ 597c478bd9Sstevel@tonic-gate #define AV_386_CX16 0x10000 /* cmpxchg16b insn */ 60ae115bc7Smrj #define AV_386_AHF 0x20000 /* lahf/sahf insns */ 61ae115bc7Smrj #define AV_386_TSCP 0x40000 /* rdtscp instruction */ 62f8801251Skk208521 #define AV_386_AMD_SSE4A 0x80000 /* AMD's SSE4A insns */ 63f8801251Skk208521 #define AV_386_POPCNT 0x100000 /* POPCNT insn */ 64f8801251Skk208521 #define AV_386_AMD_LZCNT 0x200000 /* AMD's LZCNT insn */ 65d0f8ff6eSkk208521 #define AV_386_SSSE3 0x400000 /* Intel SSSE3 insns */ 66d0f8ff6eSkk208521 #define AV_386_SSE4_1 0x800000 /* Intel SSE4.1 insns */ 67d0f8ff6eSkk208521 #define AV_386_SSE4_2 0x1000000 /* Intel SSE4.2 insns */ 685087e485SKrishnendu Sadhukhan - Sun Microsystems #define AV_386_MOVBE 0x2000000 /* Intel MOVBE insns */ 69a50a8b93SKuriakose Kuruvilla #define AV_386_AES 0x4000000 /* Intel AES insns */ 70a50a8b93SKuriakose Kuruvilla #define AV_386_PCLMULQDQ 0x8000000 /* Intel PCLMULQDQ insn */ 717af88ac7SKuriakose Kuruvilla #define AV_386_XSAVE 0x10000000 /* Intel XSAVE/XRSTOR insns */ 727af88ac7SKuriakose Kuruvilla #define AV_386_AVX 0x20000000 /* Intel AVX insns */ 73faa20166SBryan Cantrill #define AV_386_VMX 0x40000000 /* Intel VMX support */ 74faa20166SBryan Cantrill #define AV_386_AMD_SVM 0x80000000 /* AMD SVM support */ 757c478bd9Sstevel@tonic-gate 767c478bd9Sstevel@tonic-gate #define FMT_AV_386 \ 77faa20166SBryan Cantrill "\020" \ 78faa20166SBryan Cantrill "\040svm\037vmx\036avx\035xsave" \ 79faa20166SBryan Cantrill "\034pclmulqdq\033aes" \ 80faa20166SBryan Cantrill "\032movbe\031sse4.2" \ 81faa20166SBryan Cantrill "\030sse4.1\027ssse3\026amd_lzcnt\025popcnt" \ 82faa20166SBryan Cantrill "\024amd_sse4a\023tscp\022ahf\021cx16" \ 83faa20166SBryan Cantrill "\017sse3\015sse2\014sse\013fxsr\012amd3dx\011amd3d" \ 84faa20166SBryan Cantrill "\010amdmmx\07mmx\06cmov\05amdsysc\04sep\03cx8\02tsc\01fpu" 857c478bd9Sstevel@tonic-gate 86ebb8ac07SRobert Mustacchi #define AV_386_2_F16C 0x00001 /* F16C half percision extensions */ 87ebb8ac07SRobert Mustacchi #define AV_386_2_RDRAND 0x00002 /* RDRAND insn */ 88245ac945SRobert Mustacchi #define AV_386_2_BMI1 0x00004 /* BMI1 insns */ 89245ac945SRobert Mustacchi #define AV_386_2_BMI2 0x00008 /* BMI2 insns */ 90245ac945SRobert Mustacchi #define AV_386_2_FMA 0x00010 /* FMA insns */ 91245ac945SRobert Mustacchi #define AV_386_2_AVX2 0x00020 /* AVX2 insns */ 92a3623a38SRobert Mustacchi #define AV_386_2_ADX 0x00040 /* ADX insns */ 93a3623a38SRobert Mustacchi #define AV_386_2_RDSEED 0x00080 /* RDSEED insn */ 94*b8f64308SRobert Mustacchi #define AV_386_2_SHA 0x100000 /* SHA insns */ 95ebb8ac07SRobert Mustacchi 96ebb8ac07SRobert Mustacchi #define FMT_AV_386_2 \ 97*b8f64308SRobert Mustacchi "\025sha" \ 98ebb8ac07SRobert Mustacchi "\020" \ 99a3623a38SRobert Mustacchi "\10rdseed\07adx\06avx2\05fma\04bmi2\03bmi1\02rdrand\01f16c" 100ebb8ac07SRobert Mustacchi 1017c478bd9Sstevel@tonic-gate #ifdef __cplusplus 1027c478bd9Sstevel@tonic-gate } 1037c478bd9Sstevel@tonic-gate #endif 1047c478bd9Sstevel@tonic-gate 1057c478bd9Sstevel@tonic-gate #endif /* !_SYS_AUXV_386_H */ 106