Home | History | Annotate | Download | only in include
      1 /*===---- module.modulemap - intrinsics module map -------------------------===
      2  *
      3  * Permission is hereby granted, free of charge, to any person obtaining a copy
      4  * of this software and associated documentation files (the "Software"), to deal
      5  * in the Software without restriction, including without limitation the rights
      6  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
      7  * copies of the Software, and to permit persons to whom the Software is
      8  * furnished to do so, subject to the following conditions:
      9  *
     10  * The above copyright notice and this permission notice shall be included in
     11  * all copies or substantial portions of the Software.
     12  *
     13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     14  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     15  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
     16  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     17  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
     18  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
     19  * THE SOFTWARE.
     20  *
     21  *===-----------------------------------------------------------------------===
     22  */
     23 
     24 module _Builtin_intrinsics [system] [extern_c] {
     25   explicit module altivec {
     26     requires altivec
     27     header "altivec.h"
     28   }
     29 
     30   explicit module arm {
     31     requires arm
     32 
     33     explicit module acle {
     34       header "arm_acle.h"
     35       export *
     36     }
     37 
     38     explicit module neon {
     39       requires neon
     40       header "arm_neon.h"
     41       export *
     42     }
     43   }
     44 
     45   explicit module intel {
     46     requires x86
     47     export *
     48 
     49     header "immintrin.h"
     50     textual header "f16cintrin.h"
     51     textual header "avxintrin.h"
     52     textual header "avx2intrin.h"
     53     textual header "avx512fintrin.h"
     54     textual header "avx512erintrin.h"
     55     textual header "fmaintrin.h"
     56 
     57     header "x86intrin.h"
     58     textual header "bmiintrin.h"
     59     textual header "bmi2intrin.h"
     60     textual header "lzcntintrin.h"
     61     textual header "xopintrin.h"
     62     textual header "fma4intrin.h"
     63     textual header "mwaitxintrin.h"
     64 
     65     explicit module mm_malloc {
     66       requires !freestanding
     67       header "mm_malloc.h"
     68       export * // note: for <stdlib.h> dependency
     69     }
     70 
     71     explicit module cpuid {
     72       requires gnuinlineasm
     73       header "cpuid.h"
     74     }
     75 
     76     explicit module mmx {
     77       header "mmintrin.h"
     78     }
     79 
     80     explicit module sse {
     81       export mm_malloc
     82       export mmx
     83       export sse2 // note: for hackish <emmintrin.h> dependency
     84       header "xmmintrin.h"
     85     }
     86 
     87     explicit module sse2 {
     88       export sse
     89       header "emmintrin.h"
     90     }
     91 
     92     explicit module sse3 {
     93       export sse2
     94       header "pmmintrin.h"
     95     }
     96 
     97     explicit module ssse3 {
     98       export sse3
     99       header "tmmintrin.h"
    100     }
    101 
    102     explicit module sse4_1 {
    103       export ssse3
    104       header "smmintrin.h"
    105     }
    106 
    107     explicit module sse4_2 {
    108       export sse4_1
    109       header "nmmintrin.h"
    110     }
    111 
    112     explicit module sse4a {
    113       export sse3
    114       header "ammintrin.h"
    115     }
    116 
    117     explicit module popcnt {
    118       header "popcntintrin.h"
    119     }
    120 
    121     explicit module mm3dnow {
    122       header "mm3dnow.h"
    123     }
    124 
    125     explicit module aes_pclmul {
    126       header "wmmintrin.h"
    127       export aes
    128       export pclmul
    129     }
    130 
    131     explicit module aes {
    132       header "__wmmintrin_aes.h"
    133     }
    134 
    135     explicit module pclmul {
    136       header "__wmmintrin_pclmul.h"
    137     }
    138   }
    139 
    140   explicit module systemz {
    141     requires systemz
    142     export *
    143 
    144     header "s390intrin.h"
    145 
    146     explicit module htm {
    147       requires htm
    148       header "htmintrin.h"
    149       header "htmxlintrin.h"
    150     }
    151 
    152     explicit module zvector {
    153       requires zvector, vx
    154       header "vecintrin.h"
    155     }
    156   }
    157 }
    158 
    159 module _Builtin_stddef_max_align_t [system] [extern_c] {
    160   header "__stddef_max_align_t.h"
    161 }
    162 
    163 module opencl_c {
    164   requires opencl
    165   header "opencl-c.h"
    166 }
    167