@zigc/lib 0.17.0-dev.27 → 0.17.0-dev.296
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/c/fcntl.zig +6 -1
- package/c/inttypes.zig +0 -10
- package/c/math.zig +52 -112
- package/c/pthread.zig +57 -0
- package/c/search.zig +1 -27
- package/c/stdlib/drand48.zig +0 -57
- package/c/stdlib.zig +31 -121
- package/c/string.zig +20 -7
- package/c/strings.zig +0 -38
- package/c/unistd.zig +27 -26
- package/c/wchar.zig +10 -0
- package/c.zig +2 -2
- package/compiler/aro/aro/CodeGen.zig +7 -8
- package/compiler/aro/aro/Compilation.zig +17 -17
- package/compiler/aro/aro/Driver.zig +14 -13
- package/compiler/aro/aro/Parser.zig +20 -15
- package/compiler/aro/aro/Pragma.zig +3 -2
- package/compiler/aro/aro/Preprocessor.zig +9 -6
- package/compiler/aro/aro/pragmas/message.zig +3 -2
- package/compiler/aro/aro/text_literal.zig +3 -2
- package/compiler/aro/assembly_backend/x86_64.zig +4 -4
- package/compiler/build_runner.zig +2 -4
- package/compiler/reduce/Walk.zig +8 -13
- package/compiler/resinator/compile.zig +1 -1
- package/compiler/resinator/cvtres.zig +4 -4
- package/compiler/resinator/errors.zig +7 -7
- package/compiler/resinator/ico.zig +4 -4
- package/compiler/resinator/parse.zig +2 -2
- package/compiler/resinator/res.zig +1 -1
- package/compiler/std-docs.zig +1 -1
- package/compiler/test_runner.zig +1 -1
- package/compiler/translate-c/MacroTranslator.zig +1 -1
- package/compiler/translate-c/Translator.zig +6 -2
- package/compiler/translate-c/ast.zig +16 -23
- package/compiler/translate-c/main.zig +1 -1
- package/compiler_rt/addf3.zig +1 -1
- package/compiler_rt/arm.zig +3 -3
- package/compiler_rt/atomics.zig +1 -1
- package/compiler_rt/comparef.zig +3 -3
- package/compiler_rt/cos.zig +1 -3
- package/compiler_rt/count0bits.zig +1 -1
- package/compiler_rt/divdf3.zig +2 -2
- package/compiler_rt/divsf3.zig +1 -1
- package/compiler_rt/divtf3.zig +1 -1
- package/compiler_rt/divxf3.zig +1 -1
- package/compiler_rt/exp.zig +0 -2
- package/compiler_rt/exp2.zig +0 -2
- package/compiler_rt/extendf.zig +5 -5
- package/compiler_rt/fabs.zig +1 -3
- package/compiler_rt/float_from_int.zig +3 -4
- package/compiler_rt/fma.zig +0 -2
- package/compiler_rt/fmax.zig +1 -3
- package/compiler_rt/fmin.zig +1 -3
- package/compiler_rt/fmod.zig +2 -4
- package/compiler_rt/limb64.zig +3 -2
- package/compiler_rt/log.zig +0 -2
- package/compiler_rt/log10.zig +0 -2
- package/compiler_rt/log2.zig +0 -2
- package/compiler_rt/mulf3.zig +2 -2
- package/compiler_rt/rem_pio2l.zig +1 -1
- package/compiler_rt/round.zig +0 -2
- package/compiler_rt/sin.zig +1 -3
- package/compiler_rt/sincos.zig +1 -3
- package/compiler_rt/sqrt.zig +0 -2
- package/compiler_rt/ssp.zig +2 -2
- package/compiler_rt/tan.zig +1 -3
- package/compiler_rt/trunc.zig +0 -2
- package/compiler_rt/truncf.zig +3 -3
- package/compiler_rt/trunctfhf2.zig +3 -0
- package/compiler_rt.zig +5 -26
- package/docs/wasm/Walk.zig +1 -3
- package/docs/wasm/html_render.zig +1 -2
- package/docs/wasm/markdown/Parser.zig +16 -20
- package/fuzzer.zig +2 -0
- package/include/__clang_spirv_builtins.h +12 -12
- package/include/__float_float.h +176 -0
- package/include/__float_header_macro.h +12 -0
- package/include/__float_infinity_nan.h +20 -0
- package/include/amo.h +131 -0
- package/include/amxavx512intrin.h +215 -1
- package/include/amxintrin.h +0 -2
- package/include/arm_acle.h +37 -27
- package/include/arm_neon.h +218 -82
- package/include/arm_sme.h +8 -8
- package/include/arm_sve.h +4162 -3782
- package/include/avx10_2_512bf16intrin.h +19 -12
- package/include/avx10_2_512convertintrin.h +1 -1
- package/include/avx10_2_512niintrin.h +31 -31
- package/include/avx10_2_512satcvtdsintrin.h +1 -1
- package/include/avx10_2bf16intrin.h +54 -45
- package/include/avx10_2convertintrin.h +2 -2
- package/include/avx10_2copyintrin.h +1 -1
- package/include/avx10_2niintrin.h +14 -14
- package/include/avx10_2satcvtdsintrin.h +2 -2
- package/include/avx2intrin.h +275 -377
- package/include/avx512bf16intrin.h +25 -16
- package/include/avx512bitalgintrin.h +19 -30
- package/include/avx512bwintrin.h +386 -505
- package/include/avx512cdintrin.h +42 -55
- package/include/avx512dqintrin.h +132 -161
- package/include/avx512fintrin.h +1015 -1424
- package/include/avx512fp16intrin.h +112 -110
- package/include/avx512ifmaintrin.h +32 -34
- package/include/avx512ifmavlintrin.h +73 -46
- package/include/avx512vbmi2intrin.h +43 -32
- package/include/avx512vbmiintrin.h +19 -27
- package/include/avx512vbmivlintrin.h +35 -49
- package/include/avx512vlbf16intrin.h +32 -22
- package/include/avx512vlbitalgintrin.h +37 -53
- package/include/avx512vlbwintrin.h +470 -573
- package/include/avx512vlcdintrin.h +74 -102
- package/include/avx512vldqintrin.h +110 -127
- package/include/avx512vlfp16intrin.h +130 -111
- package/include/avx512vlintrin.h +945 -1299
- package/include/avx512vlvbmi2intrin.h +78 -63
- package/include/avx512vlvnniintrin.h +21 -18
- package/include/avx512vlvp2intersectintrin.h +2 -2
- package/include/avx512vnniintrin.h +10 -10
- package/include/avx512vp2intersectintrin.h +1 -2
- package/include/avx512vpopcntdqintrin.h +8 -10
- package/include/avx512vpopcntdqvlintrin.h +17 -15
- package/include/avxifmaintrin.h +16 -0
- package/include/avxintrin.h +165 -241
- package/include/avxvnniint16intrin.h +118 -99
- package/include/avxvnniint8intrin.h +56 -32
- package/include/avxvnniintrin.h +16 -8
- package/include/cpuid.h +101 -4
- package/include/emmintrin.h +168 -168
- package/include/f16cintrin.h +23 -9
- package/include/float.h +16 -155
- package/include/fma4intrin.h +98 -96
- package/include/fmaintrin.h +96 -66
- package/include/gfniintrin.h +21 -16
- package/include/hexagon_types.h +23 -20
- package/include/hvx_hexagon_protos.h +649 -860
- package/include/immintrin.h +0 -12
- package/include/intrin.h +4 -0
- package/include/lasxintrin.h +113 -0
- package/include/llvm_libc_wrappers/assert.h +3 -5
- package/include/llvm_libc_wrappers/ctype.h +3 -115
- package/include/llvm_libc_wrappers/inttypes.h +3 -5
- package/include/llvm_libc_wrappers/stdio.h +10 -38
- package/include/llvm_libc_wrappers/stdlib.h +3 -24
- package/include/llvm_libc_wrappers/string.h +2 -70
- package/include/llvm_libc_wrappers/time.h +4 -10
- package/include/mmintrin.h +188 -257
- package/include/module.modulemap +23 -4
- package/include/movrs_avx10_2_512intrin.h +2 -2
- package/include/movrs_avx10_2intrin.h +4 -4
- package/include/pmmintrin.h +12 -24
- package/include/ptrauth.h +16 -2
- package/include/riscv_mips.h +34 -0
- package/include/riscv_nds.h +89 -0
- package/include/sifive_vector.h +58 -2
- package/include/sm4evexintrin.h +2 -2
- package/include/smmintrin.h +77 -59
- package/include/spirvintrin.h +194 -0
- package/include/stddefer.h +19 -0
- package/include/tmmintrin.h +116 -147
- package/include/vaesintrin.h +1 -2
- package/include/xmmintrin.h +44 -70
- package/include/xopintrin.h +20 -10
- package/libc/include/aarch64-linux-any/asm/hwcap.h +1 -0
- package/libc/include/aarch64-linux-any/asm/unistd_64.h +1 -0
- package/libc/include/any-linux-any/asm-generic/errno.h +2 -0
- package/libc/include/any-linux-any/asm-generic/unistd.h +4 -1
- package/libc/include/any-linux-any/drm/amdgpu_drm.h +20 -6
- package/libc/include/any-linux-any/drm/amdxdna_accel.h +8 -0
- package/libc/include/any-linux-any/drm/drm_fourcc.h +6 -6
- package/libc/include/any-linux-any/drm/panfrost_drm.h +75 -1
- package/libc/include/any-linux-any/drm/panthor_drm.h +154 -3
- package/libc/include/any-linux-any/drm/rocket_accel.h +74 -24
- package/libc/include/any-linux-any/drm/xe_drm.h +89 -6
- package/libc/include/any-linux-any/linux/android/binder.h +1 -1
- package/libc/include/any-linux-any/linux/bpf.h +28 -0
- package/libc/include/any-linux-any/linux/btrfs.h +1 -0
- package/libc/include/any-linux-any/linux/btrfs_tree.h +32 -2
- package/libc/include/any-linux-any/linux/dma-buf.h +1 -0
- package/libc/include/any-linux-any/linux/dpll.h +1 -0
- package/libc/include/any-linux-any/linux/elf.h +2 -0
- package/libc/include/any-linux-any/linux/ethtool.h +21 -5
- package/libc/include/any-linux-any/linux/fs.h +1 -0
- package/libc/include/any-linux-any/linux/hyperv.h +1 -1
- package/libc/include/any-linux-any/linux/idxd.h +134 -134
- package/libc/include/any-linux-any/linux/if_alg.h +1 -1
- package/libc/include/any-linux-any/linux/if_link.h +1 -0
- package/libc/include/any-linux-any/linux/input-event-codes.h +4 -0
- package/libc/include/any-linux-any/linux/io_uring/bpf_filter.h +68 -0
- package/libc/include/any-linux-any/linux/io_uring/query.h +5 -1
- package/libc/include/any-linux-any/linux/io_uring.h +33 -2
- package/libc/include/any-linux-any/linux/iommufd.h +39 -0
- package/libc/include/any-linux-any/linux/kfd_ioctl.h +13 -3
- package/libc/include/any-linux-any/linux/kfd_sysfs.h +2 -1
- package/libc/include/any-linux-any/linux/kvm.h +30 -6
- package/libc/include/any-linux-any/linux/landlock.h +22 -8
- package/libc/include/any-linux-any/linux/magic.h +1 -0
- package/libc/include/any-linux-any/linux/mempolicy.h +3 -0
- package/libc/include/any-linux-any/linux/mount.h +11 -2
- package/libc/include/any-linux-any/linux/mptcp_pm.h +1 -1
- package/libc/include/any-linux-any/linux/mshv.h +2 -0
- package/libc/include/any-linux-any/linux/netfilter_bridge.h +5 -4
- package/libc/include/any-linux-any/linux/netfilter_ipv4.h +4 -5
- package/libc/include/any-linux-any/linux/netfilter_ipv6.h +3 -4
- package/libc/include/any-linux-any/linux/nfs.h +1 -1
- package/libc/include/any-linux-any/linux/nfsd_netlink.h +1 -0
- package/libc/include/any-linux-any/linux/nilfs2_api.h +2 -2
- package/libc/include/any-linux-any/linux/nilfs2_ondisk.h +97 -66
- package/libc/include/any-linux-any/linux/nl80211.h +104 -3
- package/libc/include/any-linux-any/linux/pci.h +7 -0
- package/libc/include/any-linux-any/linux/pci_regs.h +65 -6
- package/libc/include/any-linux-any/linux/pcitest.h +1 -0
- package/libc/include/any-linux-any/linux/perf_event.h +24 -3
- package/libc/include/any-linux-any/linux/pkt_sched.h +1 -0
- package/libc/include/any-linux-any/linux/prctl.h +30 -0
- package/libc/include/any-linux-any/linux/rseq.h +62 -5
- package/libc/include/any-linux-any/linux/shm.h +0 -1
- package/libc/include/any-linux-any/linux/stddef.h +4 -0
- package/libc/include/any-linux-any/linux/sysctl.h +1 -2
- package/libc/include/any-linux-any/linux/taskstats.h +12 -1
- package/libc/include/any-linux-any/linux/tcp.h +23 -3
- package/libc/include/any-linux-any/linux/typelimits.h +8 -0
- package/libc/include/any-linux-any/linux/ublk_cmd.h +120 -1
- package/libc/include/any-linux-any/linux/v4l2-controls.h +63 -0
- package/libc/include/any-linux-any/linux/vbox_vmmdev_types.h +2 -2
- package/libc/include/any-linux-any/linux/vduse.h +80 -5
- package/libc/include/any-linux-any/linux/version.h +3 -3
- package/libc/include/any-linux-any/linux/vfio.h +4 -0
- package/libc/include/any-linux-any/linux/videodev2.h +3 -0
- package/libc/include/any-linux-any/linux/virtio_ring.h +1 -2
- package/libc/include/any-linux-any/linux/vmclock-abi.h +20 -0
- package/libc/include/any-linux-any/rdma/bnxt_re-abi.h +16 -0
- package/libc/include/any-linux-any/rdma/ib_user_ioctl_cmds.h +16 -0
- package/libc/include/any-linux-any/rdma/mana-abi.h +3 -0
- package/libc/include/any-linux-any/scsi/scsi_bsg_ufs.h +8 -9
- package/libc/include/any-linux-any/sound/sof/tokens.h +6 -0
- package/libc/include/arc-linux-any/asm/swab.h +0 -63
- package/libc/include/arc-linux-any/asm/unistd_32.h +1 -0
- package/libc/include/arm-linux-any/asm/ptrace.h +0 -9
- package/libc/include/arm-linux-any/asm/unistd-eabi.h +1 -0
- package/libc/include/arm-linux-any/asm/unistd-oabi.h +1 -0
- package/libc/include/csky-linux-any/asm/unistd_32.h +1 -0
- package/libc/include/hexagon-linux-any/asm/unistd_32.h +1 -0
- package/libc/include/loongarch-linux-any/asm/hwcap.h +1 -0
- package/libc/include/loongarch-linux-any/asm/kvm.h +1 -0
- package/libc/include/loongarch-linux-any/asm/kvm_para.h +1 -0
- package/libc/include/loongarch-linux-any/asm/unistd_32.h +2 -0
- package/libc/include/loongarch-linux-any/asm/unistd_64.h +2 -0
- package/libc/include/m68k-linux-any/asm/unistd_32.h +1 -0
- package/libc/include/mips-linux-any/asm/errno.h +2 -0
- package/libc/include/mips-linux-any/asm/unistd_n32.h +1 -0
- package/libc/include/mips-linux-any/asm/unistd_n64.h +1 -0
- package/libc/include/mips-linux-any/asm/unistd_o32.h +1 -0
- package/libc/include/powerpc-linux-any/asm/unistd_32.h +1 -0
- package/libc/include/powerpc-linux-any/asm/unistd_64.h +1 -0
- package/libc/include/riscv-linux-any/asm/hwprobe.h +4 -0
- package/libc/include/riscv-linux-any/asm/kvm.h +3 -0
- package/libc/include/riscv-linux-any/asm/ptrace.h +37 -0
- package/libc/include/riscv-linux-any/asm/sigcontext.h +1 -0
- package/libc/include/riscv-linux-any/asm/unistd_32.h +1 -0
- package/libc/include/riscv-linux-any/asm/unistd_64.h +1 -0
- package/libc/include/s390x-linux-any/asm/unistd_64.h +1 -0
- package/libc/include/sparc-linux-any/asm/errno.h +2 -0
- package/libc/include/sparc-linux-any/asm/ioctls.h +4 -4
- package/libc/include/sparc-linux-any/asm/unistd_32.h +2 -0
- package/libc/include/sparc-linux-any/asm/unistd_64.h +2 -0
- package/libc/include/x86-linux-any/asm/auxvec.h +0 -4
- package/libc/include/x86-linux-any/asm/kvm.h +13 -8
- package/libc/include/x86-linux-any/asm/svm.h +16 -16
- package/libc/include/x86-linux-any/asm/unistd_32.h +1 -0
- package/libc/include/x86-linux-any/asm/unistd_64.h +1 -0
- package/libc/include/x86-linux-any/asm/unistd_x32.h +1 -0
- package/libc/include/xtensa-linux-any/asm/unistd_32.h +1 -0
- package/libc/musl/arch/mipsn32/syscall_arch.h +35 -32
- package/libcxx/include/__algorithm/all_of.h +11 -5
- package/libcxx/include/__algorithm/comp.h +4 -0
- package/libcxx/include/__algorithm/copy.h +28 -147
- package/libcxx/include/__algorithm/copy_backward.h +9 -24
- package/libcxx/include/__algorithm/copy_n.h +50 -16
- package/libcxx/include/__algorithm/count.h +2 -2
- package/libcxx/include/__algorithm/equal.h +43 -55
- package/libcxx/include/__algorithm/fill.h +26 -8
- package/libcxx/include/__algorithm/fill_n.h +32 -46
- package/libcxx/include/__algorithm/find.h +96 -39
- package/libcxx/include/__algorithm/find_end.h +105 -0
- package/libcxx/include/__algorithm/for_each.h +18 -24
- package/libcxx/include/__algorithm/for_each_n.h +20 -47
- package/libcxx/include/__algorithm/for_each_n_segment.h +1 -1
- package/libcxx/include/__algorithm/for_each_segment.h +26 -0
- package/libcxx/include/__algorithm/generate.h +4 -2
- package/libcxx/include/__algorithm/generate_n.h +19 -6
- package/libcxx/include/__algorithm/is_permutation.h +4 -4
- package/libcxx/include/__algorithm/iterator_operations.h +3 -0
- package/libcxx/include/__algorithm/lexicographical_compare.h +2 -2
- package/libcxx/include/__algorithm/lexicographical_compare_three_way.h +6 -6
- package/libcxx/include/__algorithm/make_heap.h +16 -4
- package/libcxx/include/__algorithm/mismatch.h +2 -2
- package/libcxx/include/__algorithm/move.h +8 -19
- package/libcxx/include/__algorithm/move_backward.h +9 -24
- package/libcxx/include/__algorithm/none_of.h +4 -4
- package/libcxx/include/__algorithm/partial_sort.h +1 -1
- package/libcxx/include/__algorithm/partial_sort_copy.h +1 -1
- package/libcxx/include/__algorithm/pstl.h +9 -9
- package/libcxx/include/__algorithm/radix_sort.h +27 -25
- package/libcxx/include/__algorithm/ranges_copy_n.h +3 -26
- package/libcxx/include/__algorithm/ranges_equal.h +17 -26
- package/libcxx/include/__algorithm/ranges_fill.h +7 -6
- package/libcxx/include/__algorithm/ranges_for_each.h +9 -1
- package/libcxx/include/__algorithm/ranges_generate_n.h +2 -6
- package/libcxx/include/__algorithm/ranges_search_n.h +2 -2
- package/libcxx/include/__algorithm/rotate.h +27 -44
- package/libcxx/include/__algorithm/search_n.h +49 -37
- package/libcxx/include/__algorithm/sift_down.h +19 -18
- package/libcxx/include/__algorithm/simd_utils.h +33 -4
- package/libcxx/include/__algorithm/specialized_algorithms.h +54 -0
- package/libcxx/include/__algorithm/stable_sort.h +1 -1
- package/libcxx/include/__assertion_handler +31 -4
- package/libcxx/include/__atomic/atomic.h +36 -60
- package/libcxx/include/__atomic/atomic_flag.h +19 -37
- package/libcxx/include/__atomic/atomic_ref.h +29 -12
- package/libcxx/include/__atomic/atomic_sync.h +127 -55
- package/libcxx/include/__atomic/atomic_sync_timed.h +144 -0
- package/libcxx/include/__atomic/atomic_waitable_traits.h +103 -0
- package/libcxx/include/__atomic/contention_t.h +27 -3
- package/libcxx/include/__atomic/floating_point_helper.h +55 -0
- package/libcxx/include/__bit/countl.h +1 -2
- package/libcxx/include/__bit/countr.h +1 -2
- package/libcxx/include/__bit/has_single_bit.h +1 -1
- package/libcxx/include/__bit/popcount.h +0 -1
- package/libcxx/include/__bit/rotate.h +15 -26
- package/libcxx/include/__bit_reference +207 -18
- package/libcxx/include/__charconv/from_chars_integral.h +1 -1
- package/libcxx/include/__charconv/from_chars_result.h +1 -1
- package/libcxx/include/__charconv/to_chars_integral.h +1 -0
- package/libcxx/include/__charconv/to_chars_result.h +1 -1
- package/libcxx/include/__charconv/traits.h +3 -24
- package/libcxx/include/__chrono/day.h +11 -0
- package/libcxx/include/__chrono/duration.h +58 -33
- package/libcxx/include/__chrono/file_clock.h +4 -2
- package/libcxx/include/__chrono/is_clock.h +72 -0
- package/libcxx/include/__chrono/leap_second.h +13 -0
- package/libcxx/include/__chrono/month.h +13 -0
- package/libcxx/include/__chrono/month_weekday.h +22 -0
- package/libcxx/include/__chrono/monthday.h +20 -0
- package/libcxx/include/__chrono/steady_clock.h +1 -1
- package/libcxx/include/__chrono/system_clock.h +3 -3
- package/libcxx/include/__chrono/time_point.h +37 -13
- package/libcxx/include/__chrono/weekday.h +25 -0
- package/libcxx/include/__chrono/year.h +11 -0
- package/libcxx/include/__chrono/year_month.h +13 -0
- package/libcxx/include/__chrono/year_month_day.h +23 -0
- package/libcxx/include/__chrono/year_month_weekday.h +26 -0
- package/libcxx/include/__chrono/zoned_time.h +16 -0
- package/libcxx/include/__compare/is_eq.h +6 -6
- package/libcxx/include/__compare/strong_order.h +12 -30
- package/libcxx/include/__compare/three_way_comparable.h +2 -2
- package/libcxx/include/__concepts/comparison_common_type.h +40 -0
- package/libcxx/include/__concepts/equality_comparable.h +2 -1
- package/libcxx/include/__condition_variable/condition_variable.h +1 -1
- package/libcxx/include/__config +63 -280
- package/libcxx/include/__configuration/abi.h +14 -24
- package/libcxx/include/__configuration/availability.h +65 -118
- package/libcxx/include/__configuration/compiler.h +6 -6
- package/libcxx/include/__configuration/experimental.h +38 -0
- package/libcxx/include/__configuration/hardening.h +215 -0
- package/libcxx/include/__configuration/language.h +3 -0
- package/libcxx/include/__configuration/platform.h +9 -16
- package/libcxx/include/__coroutine/coroutine_handle.h +9 -9
- package/libcxx/include/__coroutine/noop_coroutine_handle.h +11 -13
- package/libcxx/include/__debug_utils/strict_weak_ordering_check.h +1 -1
- package/libcxx/include/__exception/exception.h +6 -4
- package/libcxx/include/__exception/exception_ptr.h +27 -5
- package/libcxx/include/__exception/nested_exception.h +2 -2
- package/libcxx/include/__exception/operations.h +5 -5
- package/libcxx/include/__expected/bad_expected_access.h +8 -6
- package/libcxx/include/__expected/expected.h +62 -64
- package/libcxx/include/__expected/unexpected.h +4 -4
- package/libcxx/include/__filesystem/copy_options.h +4 -4
- package/libcxx/include/__filesystem/directory_entry.h +37 -33
- package/libcxx/include/__filesystem/directory_iterator.h +9 -11
- package/libcxx/include/__filesystem/directory_options.h +7 -4
- package/libcxx/include/__filesystem/file_status.h +3 -3
- package/libcxx/include/__filesystem/filesystem_error.h +9 -10
- package/libcxx/include/__filesystem/operations.h +97 -66
- package/libcxx/include/__filesystem/path.h +68 -64
- package/libcxx/include/__filesystem/path_iterator.h +1 -3
- package/libcxx/include/__filesystem/perm_options.h +4 -4
- package/libcxx/include/__filesystem/perms.h +4 -4
- package/libcxx/include/__filesystem/recursive_directory_iterator.h +9 -14
- package/libcxx/include/__filesystem/space_info.h +1 -1
- package/libcxx/include/__filesystem/u8path.h +12 -14
- package/libcxx/include/__flat_map/flat_map.h +88 -71
- package/libcxx/include/__flat_map/flat_multimap.h +251 -172
- package/libcxx/include/__flat_map/key_value_iterator.h +0 -1
- package/libcxx/include/__flat_map/utils.h +1 -0
- package/libcxx/include/__flat_set/flat_multiset.h +211 -143
- package/libcxx/include/__flat_set/flat_set.h +86 -68
- package/libcxx/include/__format/concepts.h +0 -14
- package/libcxx/include/__format/extended_grapheme_cluster_table.h +3 -2
- package/libcxx/include/__format/fmt_pair_like.h +42 -0
- package/libcxx/include/__format/format_arg.h +7 -10
- package/libcxx/include/__format/format_args.h +1 -1
- package/libcxx/include/__format/format_context.h +5 -5
- package/libcxx/include/__format/format_parse_context.h +2 -2
- package/libcxx/include/__format/formatter_output.h +30 -34
- package/libcxx/include/__format/indic_conjunct_break_table.h +3 -2
- package/libcxx/include/__format/range_default_formatter.h +2 -41
- package/libcxx/include/__format/range_format.h +71 -0
- package/libcxx/include/__format/range_formatter.h +1 -0
- package/libcxx/include/__format/width_estimation_table.h +4 -2
- package/libcxx/include/__functional/bind.h +10 -15
- package/libcxx/include/__functional/bind_back.h +1 -1
- package/libcxx/include/__functional/bind_front.h +1 -1
- package/libcxx/include/__functional/function.h +57 -75
- package/libcxx/include/__functional/hash.h +1 -10
- package/libcxx/include/__functional/identity.h +1 -1
- package/libcxx/include/__functional/is_transparent.h +8 -0
- package/libcxx/include/__functional/mem_fn.h +2 -1
- package/libcxx/include/__functional/operations.h +18 -0
- package/libcxx/include/__functional/ranges_operations.h +7 -0
- package/libcxx/include/__functional/reference_wrapper.h +7 -5
- package/libcxx/include/__functional/weak_result_type.h +14 -28
- package/libcxx/include/__fwd/ios.h +1 -1
- package/libcxx/include/__fwd/tuple.h +14 -0
- package/libcxx/include/__hash_table +371 -357
- package/libcxx/include/__ios/fpos.h +4 -4
- package/libcxx/include/__iterator/back_insert_iterator.h +1 -7
- package/libcxx/include/__iterator/bounded_iter.h +7 -8
- package/libcxx/include/__iterator/concepts.h +6 -9
- package/libcxx/include/__iterator/cpp17_iterator_concepts.h +13 -12
- package/libcxx/include/__iterator/distance.h +40 -18
- package/libcxx/include/__iterator/front_insert_iterator.h +1 -7
- package/libcxx/include/__iterator/insert_iterator.h +1 -7
- package/libcxx/include/__iterator/istream_iterator.h +6 -7
- package/libcxx/include/__iterator/istreambuf_iterator.h +6 -7
- package/libcxx/include/__iterator/iter_move.h +1 -1
- package/libcxx/include/__iterator/iterator.h +13 -0
- package/libcxx/include/__iterator/iterator_traits.h +13 -14
- package/libcxx/include/__iterator/ostream_iterator.h +1 -7
- package/libcxx/include/__iterator/ostreambuf_iterator.h +1 -7
- package/libcxx/include/__iterator/reverse_iterator.h +8 -13
- package/libcxx/include/__iterator/segmented_iterator.h +3 -8
- package/libcxx/include/__iterator/static_bounded_iter.h +3 -3
- package/libcxx/include/__iterator/wrap_iter.h +8 -6
- package/libcxx/include/__locale +3 -10
- package/libcxx/include/__locale_dir/locale_base_api/bsd_locale_fallbacks.h +0 -10
- package/libcxx/include/__locale_dir/locale_base_api.h +5 -28
- package/libcxx/include/__locale_dir/messages.h +1 -1
- package/libcxx/include/__locale_dir/money.h +2 -2
- package/libcxx/include/__locale_dir/num.h +190 -243
- package/libcxx/include/__locale_dir/pad_and_output.h +5 -6
- package/libcxx/include/__locale_dir/support/bsd_like.h +0 -20
- package/libcxx/include/__locale_dir/support/fuchsia.h +0 -7
- package/libcxx/include/__locale_dir/support/linux.h +0 -37
- package/libcxx/include/__locale_dir/support/netbsd.h +0 -2
- package/libcxx/include/__locale_dir/support/newlib.h +243 -0
- package/libcxx/include/__locale_dir/support/no_locale/characters.h +0 -4
- package/libcxx/include/__locale_dir/support/no_locale/strtonum.h +0 -9
- package/libcxx/include/__locale_dir/support/windows.h +0 -29
- package/libcxx/include/__locale_dir/time.h +3 -7
- package/libcxx/include/__math/hypot.h +1 -1
- package/libcxx/include/__math/logarithms.h +1 -1
- package/libcxx/include/__math/traits.h +80 -11
- package/libcxx/include/__mdspan/extents.h +7 -4
- package/libcxx/include/__mdspan/layout_stride.h +4 -5
- package/libcxx/include/__mdspan/mdspan.h +29 -23
- package/libcxx/include/__memory/addressof.h +7 -5
- package/libcxx/include/__memory/align.h +18 -1
- package/libcxx/include/__memory/allocate_at_least.h +15 -10
- package/libcxx/include/__memory/allocator.h +14 -26
- package/libcxx/include/__memory/allocator_traits.h +6 -4
- package/libcxx/include/__memory/compressed_pair.h +15 -9
- package/libcxx/include/__memory/construct_at.h +12 -23
- package/libcxx/include/__memory/inout_ptr.h +1 -1
- package/libcxx/include/__memory/is_sufficiently_aligned.h +1 -1
- package/libcxx/include/__memory/out_ptr.h +1 -1
- package/libcxx/include/__memory/pointer_traits.h +1 -1
- package/libcxx/include/__memory/raw_storage_iterator.h +3 -9
- package/libcxx/include/__memory/shared_count.h +9 -30
- package/libcxx/include/__memory/shared_ptr.h +100 -145
- package/libcxx/include/__memory/temp_value.h +1 -2
- package/libcxx/include/__memory/uninitialized_algorithms.h +44 -115
- package/libcxx/include/__memory/unique_ptr.h +14 -16
- package/libcxx/include/__memory/uses_allocator_construction.h +1 -0
- package/libcxx/include/__memory_resource/memory_resource.h +4 -2
- package/libcxx/include/__memory_resource/monotonic_buffer_resource.h +1 -1
- package/libcxx/include/__memory_resource/polymorphic_allocator.h +13 -8
- package/libcxx/include/__memory_resource/pool_options.h +1 -1
- package/libcxx/include/__memory_resource/synchronized_pool_resource.h +4 -2
- package/libcxx/include/__memory_resource/unsynchronized_pool_resource.h +1 -1
- package/libcxx/include/__mutex/mutex.h +2 -2
- package/libcxx/include/__mutex/once_flag.h +14 -11
- package/libcxx/include/__mutex/tag_types.h +3 -3
- package/libcxx/include/__mutex/unique_lock.h +8 -7
- package/libcxx/include/__new/align_val_t.h +6 -0
- package/libcxx/include/__new/allocate.h +1 -2
- package/libcxx/include/__new/exceptions.h +8 -2
- package/libcxx/include/__new/global_new_delete.h +4 -11
- package/libcxx/include/__new/interference_size.h +0 -4
- package/libcxx/include/__new/launder.h +3 -5
- package/libcxx/include/__new/nothrow_t.h +1 -1
- package/libcxx/include/__numeric/gcd_lcm.h +24 -34
- package/libcxx/include/__numeric/midpoint.h +9 -14
- package/libcxx/include/__numeric/pstl.h +2 -2
- package/libcxx/include/__numeric/saturation_arithmetic.h +13 -5
- package/libcxx/include/__ostream/basic_ostream.h +8 -8
- package/libcxx/include/__pstl/backends/default.h +14 -14
- package/libcxx/include/__pstl/backends/libdispatch.h +2 -2
- package/libcxx/include/__pstl/cpu_algos/find_if.h +1 -1
- package/libcxx/include/__pstl/cpu_algos/transform.h +5 -6
- package/libcxx/include/__pstl/cpu_algos/transform_reduce.h +5 -4
- package/libcxx/include/__random/binomial_distribution.h +10 -4
- package/libcxx/include/__random/mersenne_twister_engine.h +50 -154
- package/libcxx/include/__random/piecewise_constant_distribution.h +3 -2
- package/libcxx/include/__random/piecewise_linear_distribution.h +3 -2
- package/libcxx/include/__ranges/adjacent_transform_view.h +406 -0
- package/libcxx/include/__ranges/adjacent_view.h +419 -0
- package/libcxx/include/__ranges/as_rvalue_view.h +9 -9
- package/libcxx/include/__ranges/chunk_by_view.h +6 -6
- package/libcxx/include/__ranges/common_view.h +7 -7
- package/libcxx/include/__ranges/drop_view.h +8 -8
- package/libcxx/include/__ranges/drop_while_view.h +5 -5
- package/libcxx/include/__ranges/elements_of.h +49 -0
- package/libcxx/include/__ranges/empty_view.h +5 -5
- package/libcxx/include/__ranges/filter_view.h +10 -10
- package/libcxx/include/__ranges/iota_view.h +41 -22
- package/libcxx/include/__ranges/owning_view.h +15 -15
- package/libcxx/include/__ranges/ref_view.h +6 -6
- package/libcxx/include/__ranges/repeat_view.h +17 -10
- package/libcxx/include/__ranges/single_view.h +8 -8
- package/libcxx/include/__ranges/take_view.h +9 -9
- package/libcxx/include/__ranges/transform_view.h +1 -2
- package/libcxx/include/__ranges/view_interface.h +10 -10
- package/libcxx/include/__ranges/zip_transform_view.h +357 -0
- package/libcxx/include/__ranges/zip_view.h +20 -20
- package/libcxx/include/__split_buffer +612 -240
- package/libcxx/include/__stop_token/atomic_unique_lock.h +1 -1
- package/libcxx/include/__stop_token/stop_callback.h +2 -2
- package/libcxx/include/__stop_token/stop_source.h +1 -1
- package/libcxx/include/__stop_token/stop_state.h +4 -4
- package/libcxx/include/__stop_token/stop_token.h +1 -1
- package/libcxx/include/__string/char_traits.h +51 -31
- package/libcxx/include/__string/constexpr_c_functions.h +5 -5
- package/libcxx/include/__support/xlocale/__strtonum_fallback.h +0 -8
- package/libcxx/include/__system_error/error_category.h +8 -8
- package/libcxx/include/__system_error/error_code.h +5 -5
- package/libcxx/include/__system_error/error_condition.h +4 -4
- package/libcxx/include/__system_error/system_error.h +1 -1
- package/libcxx/include/__thread/id.h +1 -1
- package/libcxx/include/__thread/jthread.h +1 -1
- package/libcxx/include/__thread/poll_with_backoff.h +27 -8
- package/libcxx/include/__thread/support/c11.h +8 -8
- package/libcxx/include/__thread/support/pthread.h +8 -8
- package/libcxx/include/__thread/support/windows.h +8 -8
- package/libcxx/include/__thread/thread.h +13 -8
- package/libcxx/include/__thread/timed_backoff_policy.h +3 -2
- package/libcxx/include/__tree +849 -701
- package/libcxx/include/__tuple/sfinae_helpers.h +1 -44
- package/libcxx/include/__tuple/tuple_element.h +0 -12
- package/libcxx/include/__tuple/tuple_size.h +0 -4
- package/libcxx/include/__tuple/tuple_transform.h +45 -0
- package/libcxx/include/__type_traits/aligned_storage.h +13 -40
- package/libcxx/include/__type_traits/desugars_to.h +4 -0
- package/libcxx/include/__type_traits/invoke.h +8 -0
- package/libcxx/include/__type_traits/is_allocator.h +6 -7
- package/libcxx/include/__type_traits/is_array.h +26 -0
- package/libcxx/include/__type_traits/is_equality_comparable.h +16 -21
- package/libcxx/include/__type_traits/is_final.h +1 -1
- package/libcxx/include/__type_traits/is_floating_point.h +7 -6
- package/libcxx/include/__type_traits/is_generic_transparent_comparator.h +30 -0
- package/libcxx/include/__type_traits/is_specialization.h +2 -6
- package/libcxx/include/__type_traits/is_within_lifetime.h +29 -0
- package/libcxx/include/__type_traits/make_transparent.h +52 -0
- package/libcxx/include/__type_traits/reference_constructs_from_temporary.h +1 -7
- package/libcxx/include/__type_traits/reference_converts_from_temporary.h +1 -1
- package/libcxx/include/__utility/cmp.h +19 -7
- package/libcxx/include/__utility/default_three_way_comparator.h +70 -0
- package/libcxx/include/__utility/in_place.h +1 -1
- package/libcxx/include/__utility/integer_sequence.h +56 -41
- package/libcxx/include/__utility/lazy_synth_three_way_comparator.h +120 -0
- package/libcxx/include/__utility/pair.h +22 -25
- package/libcxx/include/__utility/scope_guard.h +2 -0
- package/libcxx/include/__utility/try_key_extraction.h +114 -0
- package/libcxx/include/__vector/vector.h +187 -160
- package/libcxx/include/__vector/vector_bool.h +76 -83
- package/libcxx/include/any +118 -155
- package/libcxx/include/array +88 -56
- package/libcxx/include/atomic +2 -0
- package/libcxx/include/barrier +20 -24
- package/libcxx/include/bitset +49 -30
- package/libcxx/include/ccomplex +3 -11
- package/libcxx/include/chrono +47 -0
- package/libcxx/include/ciso646 +3 -6
- package/libcxx/include/complex +77 -65
- package/libcxx/include/complex.h +10 -10
- package/libcxx/include/condition_variable +3 -3
- package/libcxx/include/cstdalign +3 -10
- package/libcxx/include/cstdbool +3 -10
- package/libcxx/include/ctgmath +2 -11
- package/libcxx/include/ctype.h +24 -24
- package/libcxx/include/cwchar +2 -2
- package/libcxx/include/deque +109 -225
- package/libcxx/include/errno.h +269 -269
- package/libcxx/include/exception +4 -1
- package/libcxx/include/ext/hash_map +7 -48
- package/libcxx/include/ext/hash_set +2 -8
- package/libcxx/include/fenv.h +43 -43
- package/libcxx/include/flat_map +663 -11
- package/libcxx/include/flat_set +543 -8
- package/libcxx/include/float.h +16 -16
- package/libcxx/include/forward_list +33 -53
- package/libcxx/include/fstream +57 -42
- package/libcxx/include/future +41 -51
- package/libcxx/include/initializer_list +9 -3
- package/libcxx/include/inttypes.h +16 -16
- package/libcxx/include/ios +28 -28
- package/libcxx/include/istream +19 -13
- package/libcxx/include/iterator +10 -0
- package/libcxx/include/latch +7 -5
- package/libcxx/include/limits +4 -4
- package/libcxx/include/list +61 -79
- package/libcxx/include/map +386 -274
- package/libcxx/include/math.h +19 -0
- package/libcxx/include/mdspan +1 -5
- package/libcxx/include/mutex +29 -19
- package/libcxx/include/optional +644 -149
- package/libcxx/include/print +9 -5
- package/libcxx/include/queue +39 -37
- package/libcxx/include/ranges +48 -0
- package/libcxx/include/regex +33 -31
- package/libcxx/include/scoped_allocator +16 -11
- package/libcxx/include/semaphore +15 -18
- package/libcxx/include/set +220 -192
- package/libcxx/include/shared_mutex +3 -8
- package/libcxx/include/span +53 -37
- package/libcxx/include/sstream +34 -28
- package/libcxx/include/stack +13 -15
- package/libcxx/include/stddef.h +10 -10
- package/libcxx/include/stdexcept +2 -2
- package/libcxx/include/stdio.h +20 -21
- package/libcxx/include/streambuf +59 -19
- package/libcxx/include/string +574 -573
- package/libcxx/include/string_view +113 -89
- package/libcxx/include/strstream +10 -10
- package/libcxx/include/syncstream +4 -4
- package/libcxx/include/tgmath.h +12 -12
- package/libcxx/include/tuple +242 -212
- package/libcxx/include/type_traits +8 -2
- package/libcxx/include/typeindex +5 -3
- package/libcxx/include/typeinfo +92 -89
- package/libcxx/include/unordered_map +179 -304
- package/libcxx/include/unordered_set +168 -195
- package/libcxx/include/utility +12 -0
- package/libcxx/include/valarray +106 -161
- package/libcxx/include/variant +25 -33
- package/libcxx/include/version +41 -24
- package/libcxx/include/wctype.h +29 -29
- package/libcxx/libc/hdr/errno_macros.h +3 -1
- package/libcxx/libc/hdr/stdint_proxy.h +18 -0
- package/libcxx/libc/hdr/types/wchar_t.h +23 -0
- package/libcxx/libc/hdr/wchar_overlay.h +69 -0
- package/libcxx/libc/include/llvm-libc-macros/cfloat128-macros.h +41 -0
- package/libcxx/libc/include/llvm-libc-macros/cfloat16-macros.h +20 -0
- package/libcxx/libc/include/llvm-libc-macros/wchar-macros.h +18 -0
- package/libcxx/libc/include/llvm-libc-types/cfloat128.h +11 -28
- package/libcxx/libc/include/llvm-libc-types/cfloat16.h +4 -7
- package/libcxx/libc/include/llvm-libc-types/wint_t.h +14 -0
- package/libcxx/libc/shared/libc_common.h +5 -0
- package/libcxx/libc/src/__support/CPP/bit.h +50 -12
- package/libcxx/libc/src/__support/CPP/type_traits/is_complex.h +7 -0
- package/libcxx/libc/src/__support/CPP/type_traits/is_destructible.h +2 -1
- package/libcxx/libc/src/__support/CPP/type_traits/is_unsigned.h +6 -0
- package/libcxx/libc/src/__support/CPP/utility/integer_sequence.h +10 -0
- package/libcxx/libc/src/__support/FPUtil/FPBits.h +6 -7
- package/libcxx/libc/src/__support/FPUtil/rounding_mode.h +50 -4
- package/libcxx/libc/src/__support/big_int.h +14 -14
- package/libcxx/libc/src/__support/common.h +3 -2
- package/libcxx/libc/src/__support/ctype_utils.h +19 -12
- package/libcxx/libc/src/__support/detailed_powers_of_ten.h +1 -2
- package/libcxx/libc/src/__support/high_precision_decimal.h +33 -14
- package/libcxx/libc/src/__support/libc_assert.h +2 -0
- package/libcxx/libc/src/__support/macros/attributes.h +44 -1
- package/libcxx/libc/src/__support/macros/config.h +23 -0
- package/libcxx/libc/src/__support/macros/null_check.h +1 -2
- package/libcxx/libc/src/__support/macros/optimization.h +3 -0
- package/libcxx/libc/src/__support/macros/properties/architectures.h +5 -1
- package/libcxx/libc/src/__support/macros/properties/compiler.h +8 -3
- package/libcxx/libc/src/__support/macros/properties/cpu_features.h +17 -1
- package/libcxx/libc/src/__support/macros/properties/types.h +2 -3
- package/libcxx/libc/src/__support/macros/sanitizer.h +0 -10
- package/libcxx/libc/src/__support/math_extras.h +20 -4
- package/libcxx/libc/src/__support/str_to_float.h +98 -125
- package/libcxx/libc/src/__support/str_to_integer.h +39 -27
- package/libcxx/libc/src/__support/wctype_utils.h +588 -0
- package/libcxx/src/any.cpp +4 -0
- package/libcxx/src/atomic.cpp +365 -80
- package/libcxx/src/barrier.cpp +4 -3
- package/libcxx/src/charconv.cpp +6 -3
- package/libcxx/src/condition_variable_destructor.cpp +1 -1
- package/libcxx/src/error_category.cpp +3 -1
- package/libcxx/src/exception.cpp +2 -10
- package/libcxx/src/experimental/time_zone.cpp +1 -1
- package/libcxx/src/experimental/tzdb.cpp +4 -1
- package/libcxx/src/filesystem/error.h +4 -22
- package/libcxx/src/filesystem/format_string.h +9 -18
- package/libcxx/src/filesystem/int128_builtins.cpp +2 -0
- package/libcxx/src/filesystem/operations.cpp +2 -9
- package/libcxx/src/filesystem/path.cpp +3 -1
- package/libcxx/src/include/aligned_alloc.h +65 -0
- package/libcxx/src/include/config_elast.h +1 -1
- package/libcxx/src/include/from_chars_floating_point.h +11 -7
- package/libcxx/src/include/overridable_function.h +8 -10
- package/libcxx/src/iostream.cpp +56 -37
- package/libcxx/src/locale.cpp +213 -196
- package/libcxx/src/memory.cpp +12 -14
- package/libcxx/src/mutex_destructor.cpp +1 -1
- package/libcxx/src/new.cpp +5 -5
- package/libcxx/src/optional.cpp +4 -0
- package/libcxx/src/print.cpp +9 -1
- package/libcxx/src/random.cpp +0 -26
- package/libcxx/src/string.cpp +10 -25
- package/libcxx/src/support/runtime/exception_fallback.ipp +2 -0
- package/libcxx/src/support/runtime/exception_glibcxx.ipp +3 -0
- package/libcxx/src/support/runtime/exception_libcxxabi.ipp +6 -2
- package/libcxx/src/support/runtime/exception_libcxxrt.ipp +2 -0
- package/libcxx/src/support/runtime/exception_msvc.ipp +2 -0
- package/libcxx/src/support/runtime/exception_pointer_cxxabi.ipp +9 -10
- package/libcxx/src/support/runtime/exception_pointer_glibcxx.ipp +2 -0
- package/libcxx/src/support/runtime/exception_pointer_msvc.ipp +1 -0
- package/libcxx/src/support/runtime/exception_pointer_unimplemented.ipp +1 -0
- package/libcxx/src/support/win32/locale_win32.cpp +1 -1
- package/libcxx/src/system_error.cpp +2 -0
- package/libcxx/src/thread.cpp +1 -3
- package/libcxx/src/valarray.cpp +1 -2
- package/libcxx/src/vector.cpp +2 -2
- package/libcxxabi/include/__cxxabi_config.h +42 -23
- package/libcxxabi/src/cxa_exception.cpp +4 -2
- package/libcxxabi/src/cxa_exception.h +16 -14
- package/libcxxabi/src/cxa_personality.cpp +126 -9
- package/libcxxabi/src/cxa_thread_atexit.cpp +2 -1
- package/libcxxabi/src/demangle/DemangleConfig.h +4 -0
- package/libcxxabi/src/demangle/ItaniumDemangle.h +9 -6
- package/libcxxabi/src/demangle/Utility.h +21 -7
- package/libcxxabi/src/fallback_malloc.cpp +1 -1
- package/libcxxabi/src/private_typeinfo.cpp +6 -0
- package/libcxxabi/src/stdlib_new_delete.cpp +5 -5
- package/libtsan/LICENSE.TXT +311 -0
- package/libtsan/builtins/assembly.h +41 -8
- package/libtsan/interception/interception_win.cpp +4 -0
- package/libtsan/sanitizer_common/sanitizer_allocator_primary32.h +1 -0
- package/libtsan/sanitizer_common/sanitizer_allocator_primary64.h +18 -0
- package/libtsan/sanitizer_common/sanitizer_common.h +15 -2
- package/libtsan/sanitizer_common/sanitizer_common_interceptors.inc +30 -4
- package/libtsan/sanitizer_common/sanitizer_common_interceptors_ioctl.inc +4 -0
- package/libtsan/sanitizer_common/sanitizer_common_interceptors_vfork_aarch64.inc.S +2 -1
- package/libtsan/sanitizer_common/sanitizer_common_interceptors_vfork_i386.inc.S +2 -0
- package/libtsan/sanitizer_common/sanitizer_common_interceptors_vfork_x86_64.inc.S +2 -0
- package/libtsan/sanitizer_common/sanitizer_common_syscalls.inc +18 -0
- package/libtsan/sanitizer_common/sanitizer_file.cpp +40 -12
- package/libtsan/sanitizer_common/sanitizer_file.h +3 -0
- package/libtsan/sanitizer_common/sanitizer_flags.inc +7 -0
- package/libtsan/sanitizer_common/sanitizer_fuchsia.cpp +30 -3
- package/libtsan/sanitizer_common/sanitizer_haiku.cpp +2 -2
- package/libtsan/sanitizer_common/sanitizer_internal_defs.h +1 -1
- package/libtsan/sanitizer_common/sanitizer_libc.cpp +8 -0
- package/libtsan/sanitizer_common/sanitizer_libc.h +1 -0
- package/libtsan/sanitizer_common/sanitizer_linux.cpp +15 -7
- package/libtsan/sanitizer_common/sanitizer_linux.h +3 -3
- package/libtsan/sanitizer_common/sanitizer_linux_libcdep.cpp +1 -0
- package/libtsan/sanitizer_common/sanitizer_mac.cpp +255 -104
- package/libtsan/sanitizer_common/sanitizer_mac.h +5 -0
- package/libtsan/sanitizer_common/sanitizer_netbsd.cpp +2 -2
- package/libtsan/sanitizer_common/sanitizer_platform.h +27 -1
- package/libtsan/sanitizer_common/sanitizer_platform_interceptors.h +5 -4
- package/libtsan/sanitizer_common/sanitizer_platform_limits_posix.cpp +15 -17
- package/libtsan/sanitizer_common/sanitizer_platform_limits_posix.h +32 -6
- package/libtsan/sanitizer_common/sanitizer_posix.cpp +3 -12
- package/libtsan/sanitizer_common/sanitizer_posix.h +2 -1
- package/libtsan/sanitizer_common/sanitizer_posix_libcdep.cpp +19 -0
- package/libtsan/sanitizer_common/sanitizer_procmaps_mac.cpp +102 -37
- package/libtsan/sanitizer_common/sanitizer_redefine_builtins.h +1 -1
- package/libtsan/sanitizer_common/sanitizer_signal_interceptors.inc +40 -2
- package/libtsan/sanitizer_common/sanitizer_stoptheworld.h +1 -1
- package/libtsan/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp +83 -12
- package/libtsan/sanitizer_common/sanitizer_stoptheworld_mac.cpp +3 -3
- package/libtsan/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp +7 -7
- package/libtsan/sanitizer_common/sanitizer_stoptheworld_win.cpp +2 -2
- package/libtsan/sanitizer_common/sanitizer_symbolizer_internal.h +5 -1
- package/libtsan/sanitizer_common/sanitizer_symbolizer_libcdep.cpp +11 -1
- package/libtsan/sanitizer_common/sanitizer_symbolizer_mac.cpp +86 -29
- package/libtsan/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp +27 -16
- package/libtsan/sanitizer_common/sanitizer_thread_registry.cpp +5 -4
- package/libtsan/sanitizer_common/sanitizer_thread_registry.h +4 -4
- package/libtsan/sanitizer_common/sanitizer_win.cpp +1 -3
- package/libtsan/tsan_debugging.cpp +2 -2
- package/libtsan/tsan_flags.cpp +37 -0
- package/libtsan/tsan_flags.h +8 -0
- package/libtsan/tsan_flags.inc +12 -0
- package/libtsan/tsan_interceptors.h +9 -1
- package/libtsan/tsan_interceptors_mac.cpp +19 -0
- package/libtsan/tsan_interceptors_posix.cpp +78 -32
- package/libtsan/tsan_interface.h +3 -3
- package/libtsan/tsan_interface_ann.cpp +23 -9
- package/libtsan/tsan_mman.cpp +18 -4
- package/libtsan/tsan_platform.h +44 -7
- package/libtsan/tsan_platform_linux.cpp +42 -14
- package/libtsan/tsan_platform_mac.cpp +16 -3
- package/libtsan/tsan_report.h +14 -1
- package/libtsan/tsan_rtl.cpp +14 -0
- package/libtsan/tsan_rtl.h +7 -2
- package/libtsan/tsan_rtl_aarch64.S +3 -5
- package/libtsan/tsan_rtl_access.cpp +8 -3
- package/libtsan/tsan_rtl_amd64.S +2 -0
- package/libtsan/tsan_rtl_mutex.cpp +94 -49
- package/libtsan/tsan_rtl_report.cpp +132 -65
- package/libtsan/tsan_rtl_thread.cpp +31 -9
- package/libtsan/tsan_symbolize.cpp +1 -1
- package/libtsan/tsan_symbolize.h +1 -1
- package/libtsan/tsan_trace.h +1 -1
- package/libunwind/include/__libunwind_config.h +11 -2
- package/libunwind/include/libunwind.h +117 -11
- package/libunwind/include/unwind_arm_ehabi.h +4 -1
- package/libunwind/src/AddressSpace.hpp +42 -20
- package/libunwind/src/CompactUnwinder.hpp +16 -5
- package/libunwind/src/DwarfInstructions.hpp +24 -13
- package/libunwind/src/DwarfParser.hpp +62 -23
- package/libunwind/src/EHHeaderParser.hpp +7 -4
- package/libunwind/src/Registers.hpp +226 -22
- package/libunwind/src/Unwind-seh.cpp +6 -7
- package/libunwind/src/Unwind-wasm.c +7 -7
- package/libunwind/src/UnwindCursor.hpp +167 -49
- package/libunwind/src/UnwindLevel1.c +46 -17
- package/libunwind/src/UnwindRegistersRestore.S +46 -5
- package/libunwind/src/UnwindRegistersSave.S +86 -2
- package/libunwind/src/assembly.h +5 -1
- package/libunwind/src/config.h +9 -0
- package/libunwind/src/gcc_personality_v0.c +79 -6
- package/libunwind/src/libunwind.cpp +104 -4
- package/libunwind/src/libunwind_ext.h +7 -1
- package/libunwind/src/shadow_stack_unwind.h +2 -2
- package/lldb/pretty_printers.py +948 -0
- package/package.json +1 -1
- package/std/Build/Cache/Path.zig +1 -1
- package/std/Build/Cache.zig +6 -6
- package/std/Build/Step/Compile.zig +18 -20
- package/std/Build/Step/ConfigHeader.zig +1 -1
- package/std/Build/Step/Run.zig +15 -8
- package/std/Build/Step.zig +3 -7
- package/std/Build/Watch/FsEvents.zig +1 -1
- package/std/Build/WebServer.zig +2 -2
- package/std/Build/abi.zig +1 -1
- package/std/Build.zig +0 -3
- package/std/Io/Dir.zig +9 -4
- package/std/Io/Dispatch.zig +8 -18
- package/std/Io/File/Writer.zig +8 -6
- package/std/Io/File.zig +0 -9
- package/std/Io/Kqueue.zig +3 -3
- package/std/Io/Reader.zig +8 -14
- package/std/Io/Semaphore.zig +112 -17
- package/std/Io/Terminal.zig +1 -1
- package/std/Io/Threaded.zig +183 -46
- package/std/Io/Uring.zig +18 -20
- package/std/Io/Writer.zig +10 -7
- package/std/Io/net/HostName.zig +11 -6
- package/std/Io/net.zig +11 -11
- package/std/Io.zig +104 -38
- package/std/Random/ChaCha.zig +2 -2
- package/std/Random/benchmark.zig +2 -2
- package/std/Random.zig +6 -6
- package/std/SemanticVersion.zig +1 -1
- package/std/Target/Query.zig +2 -2
- package/std/Target/aarch64.zig +620 -77
- package/std/Target/amdgcn.zig +421 -21
- package/std/Target/arm.zig +40 -6
- package/std/Target/bpf.zig +6 -0
- package/std/Target/hexagon.zig +41 -6
- package/std/Target/loongarch.zig +18 -0
- package/std/Target/mips.zig +6 -0
- package/std/Target/nvptx.zig +58 -35
- package/std/Target/powerpc.zig +27 -19
- package/std/Target/riscv.zig +415 -177
- package/std/Target/sparc.zig +17 -0
- package/std/Target/wasm.zig +7 -0
- package/std/Target/x86.zig +200 -31
- package/std/Target/xtensa.zig +65 -0
- package/std/Target.zig +67 -14
- package/std/Thread.zig +5 -2
- package/std/array_hash_map.zig +103 -57
- package/std/array_list.zig +10 -31
- package/std/base64.zig +5 -5
- package/std/bit_set.zig +86 -69
- package/std/c/haiku.zig +3 -0
- package/std/c/serenity.zig +1 -6
- package/std/c.zig +123 -32
- package/std/compress/flate/Decompress.zig +3 -4
- package/std/compress/zstd/Decompress.zig +7 -9
- package/std/crypto/25519/curve25519.zig +2 -2
- package/std/crypto/25519/edwards25519.zig +3 -3
- package/std/crypto/25519/ristretto255.zig +2 -2
- package/std/crypto/25519/scalar.zig +6 -6
- package/std/crypto/25519/x25519.zig +1 -1
- package/std/crypto/Certificate.zig +14 -2
- package/std/crypto/Sha1.zig +1 -1
- package/std/crypto/aegis.zig +45 -39
- package/std/crypto/aes_ccm.zig +22 -22
- package/std/crypto/aes_gcm.zig +10 -12
- package/std/crypto/aes_ocb.zig +9 -9
- package/std/crypto/argon2.zig +15 -15
- package/std/crypto/ascon.zig +75 -33
- package/std/crypto/bcrypt.zig +20 -10
- package/std/crypto/benchmark.zig +7 -7
- package/std/crypto/blake2.zig +100 -64
- package/std/crypto/cbc_mac.zig +1 -1
- package/std/crypto/chacha20.zig +10 -10
- package/std/crypto/cmac.zig +3 -3
- package/std/crypto/codecs/asn1/Oid.zig +12 -1
- package/std/crypto/codecs/asn1/der/Encoder.zig +1 -1
- package/std/crypto/codecs/asn1.zig +1 -1
- package/std/crypto/codecs/base64_hex_ct.zig +3 -5
- package/std/crypto/ecdsa.zig +9 -9
- package/std/crypto/ff.zig +4 -5
- package/std/crypto/ghash_polyval.zig +4 -4
- package/std/crypto/hkdf.zig +1 -1
- package/std/crypto/isap.zig +3 -3
- package/std/crypto/kangarootwelve.zig +1 -1
- package/std/crypto/keccak_p.zig +8 -8
- package/std/crypto/md5.zig +1 -1
- package/std/crypto/ml_dsa.zig +39 -39
- package/std/crypto/ml_kem.zig +12 -34
- package/std/crypto/modes.zig +2 -2
- package/std/crypto/pbkdf2.zig +1 -1
- package/std/crypto/pcurves/common.zig +4 -5
- package/std/crypto/pcurves/p256/scalar.zig +3 -3
- package/std/crypto/pcurves/p384/scalar.zig +2 -2
- package/std/crypto/pcurves/secp256k1/scalar.zig +3 -3
- package/std/crypto/pcurves/tests/p256.zig +5 -5
- package/std/crypto/pcurves/tests/p384.zig +5 -5
- package/std/crypto/pcurves/tests/secp256k1.zig +3 -3
- package/std/crypto/salsa20.zig +8 -8
- package/std/crypto/sha2.zig +2 -2
- package/std/crypto/sha3.zig +2 -2
- package/std/crypto/siphash.zig +1 -1
- package/std/crypto/timing_safe.zig +10 -9
- package/std/crypto/tls/Client.zig +89 -13
- package/std/crypto/tls.zig +1 -1
- package/std/crypto.zig +4 -3
- package/std/debug/Dwarf.zig +15 -12
- package/std/debug/Pdb.zig +25 -17
- package/std/debug.zig +14 -8
- package/std/deque.zig +1 -1
- package/std/elf.zig +1 -1
- package/std/enums.zig +8 -8
- package/std/fmt/parse_float/decimal.zig +1 -1
- package/std/fmt/parse_float.zig +1 -1
- package/std/fmt.zig +14 -10
- package/std/fs/path.zig +7 -5
- package/std/hash/Adler32.zig +3 -3
- package/std/hash/benchmark.zig +2 -2
- package/std/hash/wyhash.zig +2 -2
- package/std/hash/xxhash.zig +0 -6
- package/std/hash_map.zig +20 -1
- package/std/heap/BufferFirstAllocator.zig +165 -0
- package/std/heap/debug_allocator.zig +2 -2
- package/std/heap/memory_pool.zig +34 -197
- package/std/heap.zig +2 -133
- package/std/http/Client.zig +21 -24
- package/std/http.zig +4 -5
- package/std/json/Scanner.zig +2 -2
- package/std/json/static.zig +2 -2
- package/std/{builtin.zig → lang.zig} +5 -1
- package/std/leb128.zig +2 -2
- package/std/math/big/int.zig +5 -5
- package/std/math/big.zig +4 -4
- package/std/math/copysign.zig +1 -1
- package/std/math/float.zig +62 -0
- package/std/math/frexp.zig +4 -4
- package/std/math/ilogb.zig +1 -1
- package/std/math/isfinite.zig +1 -1
- package/std/math/isinf.zig +1 -1
- package/std/math/isnan.zig +1 -2
- package/std/math/isnormal.zig +2 -2
- package/std/math/iszero.zig +2 -2
- package/std/math/ldexp.zig +2 -2
- package/std/math/log10.zig +0 -2
- package/std/math/modf.zig +1 -2
- package/std/math/nextafter.zig +3 -4
- package/std/math/pow.zig +1 -1
- package/std/math/powi.zig +2 -3
- package/std/math/signbit.zig +0 -1
- package/std/math.zig +21 -26
- package/std/mem/Allocator.zig +0 -6
- package/std/mem.zig +31 -31
- package/std/meta/trailer_flags.zig +1 -1
- package/std/meta.zig +4 -36
- package/std/multi_array_list.zig +24 -0
- package/std/os/emscripten.zig +7 -6
- package/std/os/linux/IoUring.zig +2 -0
- package/std/os/linux/aarch64.zig +41 -12
- package/std/os/linux/arc.zig +41 -12
- package/std/os/linux/arm.zig +41 -12
- package/std/os/linux/bpf.zig +6 -0
- package/std/os/linux/hexagon.zig +33 -11
- package/std/os/linux/ioctl.zig +2 -2
- package/std/os/linux/loongarch32.zig +41 -13
- package/std/os/linux/loongarch64.zig +41 -12
- package/std/os/linux/m68k.zig +41 -13
- package/std/os/linux/mips.zig +67 -36
- package/std/os/linux/mips64.zig +60 -29
- package/std/os/linux/mipsn32.zig +60 -29
- package/std/os/linux/or1k.zig +41 -12
- package/std/os/linux/powerpc.zig +41 -12
- package/std/os/linux/powerpc64.zig +41 -12
- package/std/os/linux/riscv32.zig +41 -12
- package/std/os/linux/riscv64.zig +41 -12
- package/std/os/linux/s390x.zig +44 -7
- package/std/os/linux/sparc64.zig +83 -52
- package/std/os/linux/syscalls.zig +26 -1
- package/std/os/linux/thumb.zig +52 -36
- package/std/os/linux/x32.zig +41 -12
- package/std/os/linux/x86.zig +44 -15
- package/std/os/linux/x86_64.zig +41 -12
- package/std/os/linux.zig +416 -450
- package/std/os/plan9.zig +1 -1
- package/std/os/uefi/hii.zig +1 -1
- package/std/os/uefi/tables/boot_services.zig +9 -8
- package/std/os/uefi/tables/runtime_services.zig +1 -1
- package/std/os/windows.zig +130 -1
- package/std/os.zig +41 -0
- package/std/posix.zig +1 -1
- package/std/process/Environ.zig +1 -1
- package/std/process.zig +5 -4
- package/std/simd.zig +4 -21
- package/std/sort.zig +3 -3
- package/std/start.zig +17 -4
- package/std/std.zig +8 -1
- package/std/tar/Writer.zig +39 -33
- package/std/tar.zig +8 -4
- package/std/testing.zig +2 -2
- package/std/unicode.zig +13 -8
- package/std/zig/Ast/Render.zig +6 -30
- package/std/zig/Ast.zig +12 -37
- package/std/zig/AstGen.zig +175 -332
- package/std/zig/AstRlAnnotate.zig +1 -22
- package/std/zig/AstSmith.zig +5 -11
- package/std/zig/BuiltinFn.zig +0 -32
- package/std/zig/ErrorBundle.zig +6 -2
- package/std/zig/LibCDirs.zig +15 -6
- package/std/zig/LibCInstallation.zig +34 -12
- package/std/zig/Parse.zig +11 -76
- package/std/zig/TokenSmith.zig +0 -6
- package/std/zig/WindowsSdk.zig +18 -18
- package/std/zig/Zir.zig +65 -132
- package/std/zig/ZonGen.zig +19 -27
- package/std/zig/llvm/Builder.zig +39 -33
- package/std/zig/llvm/bitcode_writer.zig +3 -3
- package/std/zig/llvm/ir.zig +8 -8
- package/std/zig/system/arm.zig +56 -2
- package/std/zig/system/windows.zig +34 -1
- package/std/zig/system/x86.zig +60 -16
- package/std/zig/system.zig +0 -10
- package/std/zig/target.zig +1 -4
- package/std/zig/tokenizer.zig +4 -43
- package/std/zig.zig +3 -14
- package/std/zip.zig +5 -5
- package/std/zon/parse.zig +1 -1
- package/zig.h +340 -1
- package/compiler_rt/long_double.zig +0 -37
- package/include/amxbf16transposeintrin.h +0 -94
- package/include/amxcomplextransposeintrin.h +0 -303
- package/include/amxfp16transposeintrin.h +0 -94
- package/include/amxmovrstransposeintrin.h +0 -200
- package/include/amxtf32transposeintrin.h +0 -105
- package/include/amxtransposeintrin.h +0 -248
- package/libc/include/hexagon-linux-any/asm/signal.h +0 -29
- package/libc/include/s390x-linux-any/asm/tape390.h +0 -103
- package/libc/mingw/math/lrintl.c +0 -18
- package/libc/mingw/math/rintl.c +0 -16
- package/libc/mingw/winpthreads/spinlock.c +0 -82
- package/libc/musl/src/linux/tee.c +0 -8
- package/libc/musl/src/math/i386/lrintl.c +0 -8
- package/libc/musl/src/math/i386/rintl.c +0 -7
- package/libc/musl/src/math/lrintl.c +0 -36
- package/libc/musl/src/math/rintl.c +0 -29
- package/libc/musl/src/math/s390x/rintl.c +0 -15
- package/libc/musl/src/math/x32/lrintl.s +0 -7
- package/libc/musl/src/math/x32/rintl.s +0 -6
- package/libc/musl/src/math/x86_64/lrintl.c +0 -8
- package/libc/musl/src/math/x86_64/rintl.c +0 -7
- package/libc/musl/src/string/strdup.c +0 -10
- package/libc/musl/src/string/strndup.c +0 -12
- package/libc/musl/src/string/wcsdup.c +0 -10
- package/libc/musl/src/thread/pthread_spin_destroy.c +0 -6
- package/libc/musl/src/thread/pthread_spin_init.c +0 -6
- package/libc/musl/src/thread/pthread_spin_lock.c +0 -8
- package/libc/musl/src/thread/pthread_spin_trylock.c +0 -7
- package/libc/musl/src/thread/pthread_spin_unlock.c +0 -7
- package/libc/musl/src/unistd/dup2.c +0 -20
- package/libc/musl/src/unistd/dup3.c +0 -26
- package/libc/wasi/thread-stub/pthread_spin_lock.c +0 -8
- package/libc/wasi/thread-stub/pthread_spin_trylock.c +0 -8
- package/libc/wasi/thread-stub/pthread_spin_unlock.c +0 -7
- package/libtsan/sanitizer_common/sanitizer_coverage_interface.inc +0 -43
- package/std/Build/Step/CheckObject.zig +0 -2764
- /package/std/{builtin → lang}/assembly.zig +0 -0
package/include/avxintrin.h
CHANGED
|
@@ -50,28 +50,19 @@ typedef __bf16 __m256bh __attribute__((__vector_size__(32), __aligned__(32)));
|
|
|
50
50
|
#endif
|
|
51
51
|
|
|
52
52
|
/* Define the default attributes for the functions in this file. */
|
|
53
|
-
#if defined(__EVEX512__) && !defined(__AVX10_1_512__)
|
|
54
|
-
#define __DEFAULT_FN_ATTRS \
|
|
55
|
-
__attribute__((__always_inline__, __nodebug__, __target__("avx,no-evex512"), \
|
|
56
|
-
__min_vector_width__(256)))
|
|
57
|
-
#define __DEFAULT_FN_ATTRS128 \
|
|
58
|
-
__attribute__((__always_inline__, __nodebug__, __target__("avx,no-evex512"), \
|
|
59
|
-
__min_vector_width__(128)))
|
|
60
|
-
#else
|
|
61
53
|
#define __DEFAULT_FN_ATTRS \
|
|
62
54
|
__attribute__((__always_inline__, __nodebug__, __target__("avx"), \
|
|
63
55
|
__min_vector_width__(256)))
|
|
64
56
|
#define __DEFAULT_FN_ATTRS128 \
|
|
65
57
|
__attribute__((__always_inline__, __nodebug__, __target__("avx"), \
|
|
66
58
|
__min_vector_width__(128)))
|
|
67
|
-
#endif
|
|
68
59
|
|
|
69
60
|
#if defined(__cplusplus) && (__cplusplus >= 201103L)
|
|
70
61
|
#define __DEFAULT_FN_ATTRS_CONSTEXPR __DEFAULT_FN_ATTRS constexpr
|
|
71
62
|
#define __DEFAULT_FN_ATTRS128_CONSTEXPR __DEFAULT_FN_ATTRS128 constexpr
|
|
72
63
|
#else
|
|
73
|
-
#define __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
74
|
-
#define __DEFAULT_FN_ATTRS128_CONSTEXPR
|
|
64
|
+
#define __DEFAULT_FN_ATTRS_CONSTEXPR __DEFAULT_FN_ATTRS
|
|
65
|
+
#define __DEFAULT_FN_ATTRS128_CONSTEXPR __DEFAULT_FN_ATTRS128
|
|
75
66
|
#endif
|
|
76
67
|
|
|
77
68
|
/* Arithmetic */
|
|
@@ -87,9 +78,8 @@ typedef __bf16 __m256bh __attribute__((__vector_size__(32), __aligned__(32)));
|
|
|
87
78
|
/// A 256-bit vector of [4 x double] containing one of the source operands.
|
|
88
79
|
/// \returns A 256-bit vector of [4 x double] containing the sums of both
|
|
89
80
|
/// operands.
|
|
90
|
-
static __inline __m256d
|
|
91
|
-
_mm256_add_pd(__m256d __a, __m256d __b)
|
|
92
|
-
{
|
|
81
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
82
|
+
_mm256_add_pd(__m256d __a, __m256d __b) {
|
|
93
83
|
return (__m256d)((__v4df)__a+(__v4df)__b);
|
|
94
84
|
}
|
|
95
85
|
|
|
@@ -105,9 +95,8 @@ _mm256_add_pd(__m256d __a, __m256d __b)
|
|
|
105
95
|
/// A 256-bit vector of [8 x float] containing one of the source operands.
|
|
106
96
|
/// \returns A 256-bit vector of [8 x float] containing the sums of both
|
|
107
97
|
/// operands.
|
|
108
|
-
static __inline __m256
|
|
109
|
-
|
|
110
|
-
{
|
|
98
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR _mm256_add_ps(__m256 __a,
|
|
99
|
+
__m256 __b) {
|
|
111
100
|
return (__m256)((__v8sf)__a+(__v8sf)__b);
|
|
112
101
|
}
|
|
113
102
|
|
|
@@ -123,9 +112,8 @@ _mm256_add_ps(__m256 __a, __m256 __b)
|
|
|
123
112
|
/// A 256-bit vector of [4 x double] containing the subtrahend.
|
|
124
113
|
/// \returns A 256-bit vector of [4 x double] containing the differences between
|
|
125
114
|
/// both operands.
|
|
126
|
-
static __inline __m256d
|
|
127
|
-
_mm256_sub_pd(__m256d __a, __m256d __b)
|
|
128
|
-
{
|
|
115
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
116
|
+
_mm256_sub_pd(__m256d __a, __m256d __b) {
|
|
129
117
|
return (__m256d)((__v4df)__a-(__v4df)__b);
|
|
130
118
|
}
|
|
131
119
|
|
|
@@ -141,9 +129,8 @@ _mm256_sub_pd(__m256d __a, __m256d __b)
|
|
|
141
129
|
/// A 256-bit vector of [8 x float] containing the subtrahend.
|
|
142
130
|
/// \returns A 256-bit vector of [8 x float] containing the differences between
|
|
143
131
|
/// both operands.
|
|
144
|
-
static __inline __m256
|
|
145
|
-
|
|
146
|
-
{
|
|
132
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR _mm256_sub_ps(__m256 __a,
|
|
133
|
+
__m256 __b) {
|
|
147
134
|
return (__m256)((__v8sf)__a-(__v8sf)__b);
|
|
148
135
|
}
|
|
149
136
|
|
|
@@ -160,9 +147,8 @@ _mm256_sub_ps(__m256 __a, __m256 __b)
|
|
|
160
147
|
/// A 256-bit vector of [4 x double] containing the right source operand.
|
|
161
148
|
/// \returns A 256-bit vector of [4 x double] containing the alternating sums
|
|
162
149
|
/// and differences between both operands.
|
|
163
|
-
static __inline __m256d
|
|
164
|
-
_mm256_addsub_pd(__m256d __a, __m256d __b)
|
|
165
|
-
{
|
|
150
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
151
|
+
_mm256_addsub_pd(__m256d __a, __m256d __b) {
|
|
166
152
|
return (__m256d)__builtin_ia32_addsubpd256((__v4df)__a, (__v4df)__b);
|
|
167
153
|
}
|
|
168
154
|
|
|
@@ -179,9 +165,8 @@ _mm256_addsub_pd(__m256d __a, __m256d __b)
|
|
|
179
165
|
/// A 256-bit vector of [8 x float] containing the right source operand.
|
|
180
166
|
/// \returns A 256-bit vector of [8 x float] containing the alternating sums and
|
|
181
167
|
/// differences between both operands.
|
|
182
|
-
static __inline __m256
|
|
183
|
-
_mm256_addsub_ps(__m256 __a, __m256 __b)
|
|
184
|
-
{
|
|
168
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
169
|
+
_mm256_addsub_ps(__m256 __a, __m256 __b) {
|
|
185
170
|
return (__m256)__builtin_ia32_addsubps256((__v8sf)__a, (__v8sf)__b);
|
|
186
171
|
}
|
|
187
172
|
|
|
@@ -197,9 +182,8 @@ _mm256_addsub_ps(__m256 __a, __m256 __b)
|
|
|
197
182
|
/// A 256-bit vector of [4 x double] containing the divisor.
|
|
198
183
|
/// \returns A 256-bit vector of [4 x double] containing the quotients of both
|
|
199
184
|
/// operands.
|
|
200
|
-
static __inline __m256d
|
|
201
|
-
_mm256_div_pd(__m256d __a, __m256d __b)
|
|
202
|
-
{
|
|
185
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
186
|
+
_mm256_div_pd(__m256d __a, __m256d __b) {
|
|
203
187
|
return (__m256d)((__v4df)__a/(__v4df)__b);
|
|
204
188
|
}
|
|
205
189
|
|
|
@@ -215,9 +199,8 @@ _mm256_div_pd(__m256d __a, __m256d __b)
|
|
|
215
199
|
/// A 256-bit vector of [8 x float] containing the divisor.
|
|
216
200
|
/// \returns A 256-bit vector of [8 x float] containing the quotients of both
|
|
217
201
|
/// operands.
|
|
218
|
-
static __inline __m256
|
|
219
|
-
|
|
220
|
-
{
|
|
202
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR _mm256_div_ps(__m256 __a,
|
|
203
|
+
__m256 __b) {
|
|
221
204
|
return (__m256)((__v8sf)__a/(__v8sf)__b);
|
|
222
205
|
}
|
|
223
206
|
|
|
@@ -236,9 +219,8 @@ _mm256_div_ps(__m256 __a, __m256 __b)
|
|
|
236
219
|
/// A 256-bit vector of [4 x double] containing one of the operands.
|
|
237
220
|
/// \returns A 256-bit vector of [4 x double] containing the maximum values
|
|
238
221
|
/// between both operands.
|
|
239
|
-
static __inline __m256d
|
|
240
|
-
_mm256_max_pd(__m256d __a, __m256d __b)
|
|
241
|
-
{
|
|
222
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
223
|
+
_mm256_max_pd(__m256d __a, __m256d __b) {
|
|
242
224
|
return (__m256d)__builtin_ia32_maxpd256((__v4df)__a, (__v4df)__b);
|
|
243
225
|
}
|
|
244
226
|
|
|
@@ -257,9 +239,8 @@ _mm256_max_pd(__m256d __a, __m256d __b)
|
|
|
257
239
|
/// A 256-bit vector of [8 x float] containing one of the operands.
|
|
258
240
|
/// \returns A 256-bit vector of [8 x float] containing the maximum values
|
|
259
241
|
/// between both operands.
|
|
260
|
-
static __inline __m256
|
|
261
|
-
|
|
262
|
-
{
|
|
242
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR _mm256_max_ps(__m256 __a,
|
|
243
|
+
__m256 __b) {
|
|
263
244
|
return (__m256)__builtin_ia32_maxps256((__v8sf)__a, (__v8sf)__b);
|
|
264
245
|
}
|
|
265
246
|
|
|
@@ -278,9 +259,8 @@ _mm256_max_ps(__m256 __a, __m256 __b)
|
|
|
278
259
|
/// A 256-bit vector of [4 x double] containing one of the operands.
|
|
279
260
|
/// \returns A 256-bit vector of [4 x double] containing the minimum values
|
|
280
261
|
/// between both operands.
|
|
281
|
-
static __inline __m256d
|
|
282
|
-
_mm256_min_pd(__m256d __a, __m256d __b)
|
|
283
|
-
{
|
|
262
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
263
|
+
_mm256_min_pd(__m256d __a, __m256d __b) {
|
|
284
264
|
return (__m256d)__builtin_ia32_minpd256((__v4df)__a, (__v4df)__b);
|
|
285
265
|
}
|
|
286
266
|
|
|
@@ -299,9 +279,8 @@ _mm256_min_pd(__m256d __a, __m256d __b)
|
|
|
299
279
|
/// A 256-bit vector of [8 x float] containing one of the operands.
|
|
300
280
|
/// \returns A 256-bit vector of [8 x float] containing the minimum values
|
|
301
281
|
/// between both operands.
|
|
302
|
-
static __inline __m256
|
|
303
|
-
|
|
304
|
-
{
|
|
282
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR _mm256_min_ps(__m256 __a,
|
|
283
|
+
__m256 __b) {
|
|
305
284
|
return (__m256)__builtin_ia32_minps256((__v8sf)__a, (__v8sf)__b);
|
|
306
285
|
}
|
|
307
286
|
|
|
@@ -317,9 +296,8 @@ _mm256_min_ps(__m256 __a, __m256 __b)
|
|
|
317
296
|
/// A 256-bit vector of [4 x double] containing one of the operands.
|
|
318
297
|
/// \returns A 256-bit vector of [4 x double] containing the products of both
|
|
319
298
|
/// operands.
|
|
320
|
-
static __inline __m256d
|
|
321
|
-
_mm256_mul_pd(__m256d __a, __m256d __b)
|
|
322
|
-
{
|
|
299
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
300
|
+
_mm256_mul_pd(__m256d __a, __m256d __b) {
|
|
323
301
|
return (__m256d)((__v4df)__a * (__v4df)__b);
|
|
324
302
|
}
|
|
325
303
|
|
|
@@ -335,9 +313,8 @@ _mm256_mul_pd(__m256d __a, __m256d __b)
|
|
|
335
313
|
/// A 256-bit vector of [8 x float] containing one of the operands.
|
|
336
314
|
/// \returns A 256-bit vector of [8 x float] containing the products of both
|
|
337
315
|
/// operands.
|
|
338
|
-
static __inline __m256
|
|
339
|
-
|
|
340
|
-
{
|
|
316
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR _mm256_mul_ps(__m256 __a,
|
|
317
|
+
__m256 __b) {
|
|
341
318
|
return (__m256)((__v8sf)__a * (__v8sf)__b);
|
|
342
319
|
}
|
|
343
320
|
|
|
@@ -352,10 +329,8 @@ _mm256_mul_ps(__m256 __a, __m256 __b)
|
|
|
352
329
|
/// A 256-bit vector of [4 x double].
|
|
353
330
|
/// \returns A 256-bit vector of [4 x double] containing the square roots of the
|
|
354
331
|
/// values in the operand.
|
|
355
|
-
static __inline __m256d __DEFAULT_FN_ATTRS
|
|
356
|
-
|
|
357
|
-
{
|
|
358
|
-
return (__m256d)__builtin_ia32_sqrtpd256((__v4df)__a);
|
|
332
|
+
static __inline __m256d __DEFAULT_FN_ATTRS _mm256_sqrt_pd(__m256d __a) {
|
|
333
|
+
return __builtin_elementwise_sqrt(__a);
|
|
359
334
|
}
|
|
360
335
|
|
|
361
336
|
/// Calculates the square roots of the values in a 256-bit vector of
|
|
@@ -369,10 +344,8 @@ _mm256_sqrt_pd(__m256d __a)
|
|
|
369
344
|
/// A 256-bit vector of [8 x float].
|
|
370
345
|
/// \returns A 256-bit vector of [8 x float] containing the square roots of the
|
|
371
346
|
/// values in the operand.
|
|
372
|
-
static __inline __m256 __DEFAULT_FN_ATTRS
|
|
373
|
-
|
|
374
|
-
{
|
|
375
|
-
return (__m256)__builtin_ia32_sqrtps256((__v8sf)__a);
|
|
347
|
+
static __inline __m256 __DEFAULT_FN_ATTRS _mm256_sqrt_ps(__m256 __a) {
|
|
348
|
+
return __builtin_elementwise_sqrt(__a);
|
|
376
349
|
}
|
|
377
350
|
|
|
378
351
|
/// Calculates the reciprocal square roots of the values in a 256-bit
|
|
@@ -555,7 +528,7 @@ _mm256_rcp_ps(__m256 __a)
|
|
|
555
528
|
/// A 256-bit vector of [4 x double] containing one of the source operands.
|
|
556
529
|
/// \returns A 256-bit vector of [4 x double] containing the bitwise AND of the
|
|
557
530
|
/// values between both operands.
|
|
558
|
-
static __inline __m256d
|
|
531
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
559
532
|
_mm256_and_pd(__m256d __a, __m256d __b)
|
|
560
533
|
{
|
|
561
534
|
return (__m256d)((__v4du)__a & (__v4du)__b);
|
|
@@ -573,7 +546,7 @@ _mm256_and_pd(__m256d __a, __m256d __b)
|
|
|
573
546
|
/// A 256-bit vector of [8 x float] containing one of the source operands.
|
|
574
547
|
/// \returns A 256-bit vector of [8 x float] containing the bitwise AND of the
|
|
575
548
|
/// values between both operands.
|
|
576
|
-
static __inline __m256
|
|
549
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
577
550
|
_mm256_and_ps(__m256 __a, __m256 __b)
|
|
578
551
|
{
|
|
579
552
|
return (__m256)((__v8su)__a & (__v8su)__b);
|
|
@@ -594,7 +567,7 @@ _mm256_and_ps(__m256 __a, __m256 __b)
|
|
|
594
567
|
/// \returns A 256-bit vector of [4 x double] containing the bitwise AND of the
|
|
595
568
|
/// values of the second operand and the one's complement of the first
|
|
596
569
|
/// operand.
|
|
597
|
-
static __inline __m256d
|
|
570
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
598
571
|
_mm256_andnot_pd(__m256d __a, __m256d __b)
|
|
599
572
|
{
|
|
600
573
|
return (__m256d)(~(__v4du)__a & (__v4du)__b);
|
|
@@ -615,7 +588,7 @@ _mm256_andnot_pd(__m256d __a, __m256d __b)
|
|
|
615
588
|
/// \returns A 256-bit vector of [8 x float] containing the bitwise AND of the
|
|
616
589
|
/// values of the second operand and the one's complement of the first
|
|
617
590
|
/// operand.
|
|
618
|
-
static __inline __m256
|
|
591
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
619
592
|
_mm256_andnot_ps(__m256 __a, __m256 __b)
|
|
620
593
|
{
|
|
621
594
|
return (__m256)(~(__v8su)__a & (__v8su)__b);
|
|
@@ -633,7 +606,7 @@ _mm256_andnot_ps(__m256 __a, __m256 __b)
|
|
|
633
606
|
/// A 256-bit vector of [4 x double] containing one of the source operands.
|
|
634
607
|
/// \returns A 256-bit vector of [4 x double] containing the bitwise OR of the
|
|
635
608
|
/// values between both operands.
|
|
636
|
-
static __inline __m256d
|
|
609
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
637
610
|
_mm256_or_pd(__m256d __a, __m256d __b)
|
|
638
611
|
{
|
|
639
612
|
return (__m256d)((__v4du)__a | (__v4du)__b);
|
|
@@ -651,7 +624,7 @@ _mm256_or_pd(__m256d __a, __m256d __b)
|
|
|
651
624
|
/// A 256-bit vector of [8 x float] containing one of the source operands.
|
|
652
625
|
/// \returns A 256-bit vector of [8 x float] containing the bitwise OR of the
|
|
653
626
|
/// values between both operands.
|
|
654
|
-
static __inline __m256
|
|
627
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
655
628
|
_mm256_or_ps(__m256 __a, __m256 __b)
|
|
656
629
|
{
|
|
657
630
|
return (__m256)((__v8su)__a | (__v8su)__b);
|
|
@@ -669,7 +642,7 @@ _mm256_or_ps(__m256 __a, __m256 __b)
|
|
|
669
642
|
/// A 256-bit vector of [4 x double] containing one of the source operands.
|
|
670
643
|
/// \returns A 256-bit vector of [4 x double] containing the bitwise XOR of the
|
|
671
644
|
/// values between both operands.
|
|
672
|
-
static __inline __m256d
|
|
645
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
673
646
|
_mm256_xor_pd(__m256d __a, __m256d __b)
|
|
674
647
|
{
|
|
675
648
|
return (__m256d)((__v4du)__a ^ (__v4du)__b);
|
|
@@ -687,7 +660,7 @@ _mm256_xor_pd(__m256d __a, __m256d __b)
|
|
|
687
660
|
/// A 256-bit vector of [8 x float] containing one of the source operands.
|
|
688
661
|
/// \returns A 256-bit vector of [8 x float] containing the bitwise XOR of the
|
|
689
662
|
/// values between both operands.
|
|
690
|
-
static __inline __m256
|
|
663
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
691
664
|
_mm256_xor_ps(__m256 __a, __m256 __b)
|
|
692
665
|
{
|
|
693
666
|
return (__m256)((__v8su)__a ^ (__v8su)__b);
|
|
@@ -711,9 +684,8 @@ _mm256_xor_ps(__m256 __a, __m256 __b)
|
|
|
711
684
|
/// elements of a vector of [4 x double].
|
|
712
685
|
/// \returns A 256-bit vector of [4 x double] containing the horizontal sums of
|
|
713
686
|
/// both operands.
|
|
714
|
-
static __inline __m256d
|
|
715
|
-
_mm256_hadd_pd(__m256d __a, __m256d __b)
|
|
716
|
-
{
|
|
687
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
688
|
+
_mm256_hadd_pd(__m256d __a, __m256d __b) {
|
|
717
689
|
return (__m256d)__builtin_ia32_haddpd256((__v4df)__a, (__v4df)__b);
|
|
718
690
|
}
|
|
719
691
|
|
|
@@ -734,9 +706,8 @@ _mm256_hadd_pd(__m256d __a, __m256d __b)
|
|
|
734
706
|
/// index 2, 3, 6, 7 of a vector of [8 x float].
|
|
735
707
|
/// \returns A 256-bit vector of [8 x float] containing the horizontal sums of
|
|
736
708
|
/// both operands.
|
|
737
|
-
static __inline __m256
|
|
738
|
-
|
|
739
|
-
{
|
|
709
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR _mm256_hadd_ps(__m256 __a,
|
|
710
|
+
__m256 __b) {
|
|
740
711
|
return (__m256)__builtin_ia32_haddps256((__v8sf)__a, (__v8sf)__b);
|
|
741
712
|
}
|
|
742
713
|
|
|
@@ -757,9 +728,8 @@ _mm256_hadd_ps(__m256 __a, __m256 __b)
|
|
|
757
728
|
/// odd-indexed elements of a vector of [4 x double].
|
|
758
729
|
/// \returns A 256-bit vector of [4 x double] containing the horizontal
|
|
759
730
|
/// differences of both operands.
|
|
760
|
-
static __inline __m256d
|
|
761
|
-
_mm256_hsub_pd(__m256d __a, __m256d __b)
|
|
762
|
-
{
|
|
731
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
732
|
+
_mm256_hsub_pd(__m256d __a, __m256d __b) {
|
|
763
733
|
return (__m256d)__builtin_ia32_hsubpd256((__v4df)__a, (__v4df)__b);
|
|
764
734
|
}
|
|
765
735
|
|
|
@@ -780,9 +750,8 @@ _mm256_hsub_pd(__m256d __a, __m256d __b)
|
|
|
780
750
|
/// elements with index 2, 3, 6, 7 of a vector of [8 x float].
|
|
781
751
|
/// \returns A 256-bit vector of [8 x float] containing the horizontal
|
|
782
752
|
/// differences of both operands.
|
|
783
|
-
static __inline __m256
|
|
784
|
-
|
|
785
|
-
{
|
|
753
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR _mm256_hsub_ps(__m256 __a,
|
|
754
|
+
__m256 __b) {
|
|
786
755
|
return (__m256)__builtin_ia32_hsubps256((__v8sf)__a, (__v8sf)__b);
|
|
787
756
|
}
|
|
788
757
|
|
|
@@ -810,9 +779,8 @@ _mm256_hsub_ps(__m256 __a, __m256 __b)
|
|
|
810
779
|
/// 1: Bits [127:64] of the source are copied to bits [127:64] of the
|
|
811
780
|
/// returned vector.
|
|
812
781
|
/// \returns A 128-bit vector of [2 x double] containing the copied values.
|
|
813
|
-
static __inline __m128d
|
|
814
|
-
_mm_permutevar_pd(__m128d __a, __m128i __c)
|
|
815
|
-
{
|
|
782
|
+
static __inline __m128d __DEFAULT_FN_ATTRS128_CONSTEXPR
|
|
783
|
+
_mm_permutevar_pd(__m128d __a, __m128i __c) {
|
|
816
784
|
return (__m128d)__builtin_ia32_vpermilvarpd((__v2df)__a, (__v2di)__c);
|
|
817
785
|
}
|
|
818
786
|
|
|
@@ -849,9 +817,8 @@ _mm_permutevar_pd(__m128d __a, __m128i __c)
|
|
|
849
817
|
/// 1: Bits [255:192] of the source are copied to bits [255:192] of the
|
|
850
818
|
/// returned vector.
|
|
851
819
|
/// \returns A 256-bit vector of [4 x double] containing the copied values.
|
|
852
|
-
static __inline __m256d
|
|
853
|
-
_mm256_permutevar_pd(__m256d __a, __m256i __c)
|
|
854
|
-
{
|
|
820
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
821
|
+
_mm256_permutevar_pd(__m256d __a, __m256i __c) {
|
|
855
822
|
return (__m256d)__builtin_ia32_vpermilvarpd256((__v4df)__a, (__v4di)__c);
|
|
856
823
|
}
|
|
857
824
|
|
|
@@ -904,9 +871,8 @@ _mm256_permutevar_pd(__m256d __a, __m256i __c)
|
|
|
904
871
|
/// 11: Bits [127:96] of the source are copied to bits [127:96] of the
|
|
905
872
|
/// returned vector.
|
|
906
873
|
/// \returns A 128-bit vector of [4 x float] containing the copied values.
|
|
907
|
-
static __inline __m128
|
|
908
|
-
_mm_permutevar_ps(__m128 __a, __m128i __c)
|
|
909
|
-
{
|
|
874
|
+
static __inline __m128 __DEFAULT_FN_ATTRS128_CONSTEXPR
|
|
875
|
+
_mm_permutevar_ps(__m128 __a, __m128i __c) {
|
|
910
876
|
return (__m128)__builtin_ia32_vpermilvarps((__v4sf)__a, (__v4si)__c);
|
|
911
877
|
}
|
|
912
878
|
|
|
@@ -995,9 +961,8 @@ _mm_permutevar_ps(__m128 __a, __m128i __c)
|
|
|
995
961
|
/// 11: Bits [255:224] of the source are copied to bits [255:224] of the
|
|
996
962
|
/// returned vector.
|
|
997
963
|
/// \returns A 256-bit vector of [8 x float] containing the copied values.
|
|
998
|
-
static __inline __m256
|
|
999
|
-
_mm256_permutevar_ps(__m256 __a, __m256i __c)
|
|
1000
|
-
{
|
|
964
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
965
|
+
_mm256_permutevar_ps(__m256 __a, __m256i __c) {
|
|
1001
966
|
return (__m256)__builtin_ia32_vpermilvarps256((__v8sf)__a, (__v8si)__c);
|
|
1002
967
|
}
|
|
1003
968
|
|
|
@@ -1419,9 +1384,8 @@ _mm256_permutevar_ps(__m256 __a, __m256i __c)
|
|
|
1419
1384
|
/// 64-bit element in operand \a __b is copied to the same position in the
|
|
1420
1385
|
/// destination.
|
|
1421
1386
|
/// \returns A 256-bit vector of [4 x double] containing the copied values.
|
|
1422
|
-
static __inline __m256d
|
|
1423
|
-
_mm256_blendv_pd(__m256d __a, __m256d __b, __m256d __c)
|
|
1424
|
-
{
|
|
1387
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
1388
|
+
_mm256_blendv_pd(__m256d __a, __m256d __b, __m256d __c) {
|
|
1425
1389
|
return (__m256d)__builtin_ia32_blendvpd256(
|
|
1426
1390
|
(__v4df)__a, (__v4df)__b, (__v4df)__c);
|
|
1427
1391
|
}
|
|
@@ -1447,9 +1411,8 @@ _mm256_blendv_pd(__m256d __a, __m256d __b, __m256d __c)
|
|
|
1447
1411
|
/// corresponding 32-bit element in operand \a __b is copied to the same
|
|
1448
1412
|
/// position in the destination.
|
|
1449
1413
|
/// \returns A 256-bit vector of [8 x float] containing the copied values.
|
|
1450
|
-
static __inline __m256
|
|
1451
|
-
_mm256_blendv_ps(__m256 __a, __m256 __b, __m256 __c)
|
|
1452
|
-
{
|
|
1414
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
1415
|
+
_mm256_blendv_ps(__m256 __a, __m256 __b, __m256 __c) {
|
|
1453
1416
|
return (__m256)__builtin_ia32_blendvps256(
|
|
1454
1417
|
(__v8sf)__a, (__v8sf)__b, (__v8sf)__c);
|
|
1455
1418
|
}
|
|
@@ -2190,9 +2153,8 @@ _mm256_blendv_ps(__m256 __a, __m256 __b, __m256 __c)
|
|
|
2190
2153
|
/// \param __a
|
|
2191
2154
|
/// A 128-bit integer vector of [4 x i32].
|
|
2192
2155
|
/// \returns A 256-bit vector of [4 x double] containing the converted values.
|
|
2193
|
-
static __inline __m256d
|
|
2194
|
-
_mm256_cvtepi32_pd(__m128i __a)
|
|
2195
|
-
{
|
|
2156
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2157
|
+
_mm256_cvtepi32_pd(__m128i __a) {
|
|
2196
2158
|
return (__m256d)__builtin_convertvector((__v4si)__a, __v4df);
|
|
2197
2159
|
}
|
|
2198
2160
|
|
|
@@ -2205,9 +2167,8 @@ _mm256_cvtepi32_pd(__m128i __a)
|
|
|
2205
2167
|
/// \param __a
|
|
2206
2168
|
/// A 256-bit integer vector.
|
|
2207
2169
|
/// \returns A 256-bit vector of [8 x float] containing the converted values.
|
|
2208
|
-
static __inline __m256
|
|
2209
|
-
_mm256_cvtepi32_ps(__m256i __a)
|
|
2210
|
-
{
|
|
2170
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2171
|
+
_mm256_cvtepi32_ps(__m256i __a) {
|
|
2211
2172
|
return (__m256)__builtin_convertvector((__v8si)__a, __v8sf);
|
|
2212
2173
|
}
|
|
2213
2174
|
|
|
@@ -2221,9 +2182,8 @@ _mm256_cvtepi32_ps(__m256i __a)
|
|
|
2221
2182
|
/// \param __a
|
|
2222
2183
|
/// A 256-bit vector of [4 x double].
|
|
2223
2184
|
/// \returns A 128-bit vector of [4 x float] containing the converted values.
|
|
2224
|
-
static __inline __m128
|
|
2225
|
-
_mm256_cvtpd_ps(__m256d __a)
|
|
2226
|
-
{
|
|
2185
|
+
static __inline __m128 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2186
|
+
_mm256_cvtpd_ps(__m256d __a) {
|
|
2227
2187
|
return (__m128)__builtin_ia32_cvtpd2ps256((__v4df) __a);
|
|
2228
2188
|
}
|
|
2229
2189
|
|
|
@@ -2256,9 +2216,8 @@ _mm256_cvtps_epi32(__m256 __a)
|
|
|
2256
2216
|
/// \param __a
|
|
2257
2217
|
/// A 128-bit vector of [4 x float].
|
|
2258
2218
|
/// \returns A 256-bit vector of [4 x double] containing the converted values.
|
|
2259
|
-
static __inline __m256d
|
|
2260
|
-
_mm256_cvtps_pd(__m128 __a)
|
|
2261
|
-
{
|
|
2219
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2220
|
+
_mm256_cvtps_pd(__m128 __a) {
|
|
2262
2221
|
return (__m256d)__builtin_convertvector((__v4sf)__a, __v4df);
|
|
2263
2222
|
}
|
|
2264
2223
|
|
|
@@ -2333,10 +2292,9 @@ _mm256_cvttps_epi32(__m256 __a)
|
|
|
2333
2292
|
/// \param __a
|
|
2334
2293
|
/// A 256-bit vector of [4 x double].
|
|
2335
2294
|
/// \returns A 64 bit double containing the first element of the input vector.
|
|
2336
|
-
static __inline double
|
|
2337
|
-
_mm256_cvtsd_f64(__m256d __a)
|
|
2338
|
-
|
|
2339
|
-
return __a[0];
|
|
2295
|
+
static __inline double __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2296
|
+
_mm256_cvtsd_f64(__m256d __a) {
|
|
2297
|
+
return __a[0];
|
|
2340
2298
|
}
|
|
2341
2299
|
|
|
2342
2300
|
/// Returns the first element of the input vector of [8 x i32].
|
|
@@ -2349,11 +2307,10 @@ _mm256_cvtsd_f64(__m256d __a)
|
|
|
2349
2307
|
/// \param __a
|
|
2350
2308
|
/// A 256-bit vector of [8 x i32].
|
|
2351
2309
|
/// \returns A 32 bit integer containing the first element of the input vector.
|
|
2352
|
-
static __inline int
|
|
2353
|
-
_mm256_cvtsi256_si32(__m256i __a)
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
return __b[0];
|
|
2310
|
+
static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2311
|
+
_mm256_cvtsi256_si32(__m256i __a) {
|
|
2312
|
+
__v8si __b = (__v8si)__a;
|
|
2313
|
+
return __b[0];
|
|
2357
2314
|
}
|
|
2358
2315
|
|
|
2359
2316
|
/// Returns the first element of the input vector of [8 x float].
|
|
@@ -2366,10 +2323,9 @@ _mm256_cvtsi256_si32(__m256i __a)
|
|
|
2366
2323
|
/// \param __a
|
|
2367
2324
|
/// A 256-bit vector of [8 x float].
|
|
2368
2325
|
/// \returns A 32 bit float containing the first element of the input vector.
|
|
2369
|
-
static __inline float
|
|
2370
|
-
_mm256_cvtss_f32(__m256 __a)
|
|
2371
|
-
|
|
2372
|
-
return __a[0];
|
|
2326
|
+
static __inline float __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2327
|
+
_mm256_cvtss_f32(__m256 __a) {
|
|
2328
|
+
return __a[0];
|
|
2373
2329
|
}
|
|
2374
2330
|
|
|
2375
2331
|
/* Vector replicate */
|
|
@@ -2392,7 +2348,7 @@ _mm256_cvtss_f32(__m256 __a)
|
|
|
2392
2348
|
/// return value.
|
|
2393
2349
|
/// \returns A 256-bit vector of [8 x float] containing the moved and duplicated
|
|
2394
2350
|
/// values.
|
|
2395
|
-
static __inline __m256
|
|
2351
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2396
2352
|
_mm256_movehdup_ps(__m256 __a)
|
|
2397
2353
|
{
|
|
2398
2354
|
return __builtin_shufflevector((__v8sf)__a, (__v8sf)__a, 1, 1, 3, 3, 5, 5, 7, 7);
|
|
@@ -2417,7 +2373,7 @@ _mm256_movehdup_ps(__m256 __a)
|
|
|
2417
2373
|
/// return value.
|
|
2418
2374
|
/// \returns A 256-bit vector of [8 x float] containing the moved and duplicated
|
|
2419
2375
|
/// values.
|
|
2420
|
-
static __inline __m256
|
|
2376
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2421
2377
|
_mm256_moveldup_ps(__m256 __a)
|
|
2422
2378
|
{
|
|
2423
2379
|
return __builtin_shufflevector((__v8sf)__a, (__v8sf)__a, 0, 0, 2, 2, 4, 4, 6, 6);
|
|
@@ -2439,7 +2395,7 @@ _mm256_moveldup_ps(__m256 __a)
|
|
|
2439
2395
|
/// the return value.
|
|
2440
2396
|
/// \returns A 256-bit vector of [4 x double] containing the moved and
|
|
2441
2397
|
/// duplicated values.
|
|
2442
|
-
static __inline __m256d
|
|
2398
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2443
2399
|
_mm256_movedup_pd(__m256d __a)
|
|
2444
2400
|
{
|
|
2445
2401
|
return __builtin_shufflevector((__v4df)__a, (__v4df)__a, 0, 0, 2, 2);
|
|
@@ -2462,9 +2418,8 @@ _mm256_movedup_pd(__m256d __a)
|
|
|
2462
2418
|
/// Bits [127:64] are written to bits [127:64] of the return value. \n
|
|
2463
2419
|
/// Bits [255:192] are written to bits [255:192] of the return value. \n
|
|
2464
2420
|
/// \returns A 256-bit vector of [4 x double] containing the interleaved values.
|
|
2465
|
-
static __inline __m256d
|
|
2466
|
-
_mm256_unpackhi_pd(__m256d __a, __m256d __b)
|
|
2467
|
-
{
|
|
2421
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2422
|
+
_mm256_unpackhi_pd(__m256d __a, __m256d __b) {
|
|
2468
2423
|
return __builtin_shufflevector((__v4df)__a, (__v4df)__b, 1, 5, 1+2, 5+2);
|
|
2469
2424
|
}
|
|
2470
2425
|
|
|
@@ -2484,9 +2439,8 @@ _mm256_unpackhi_pd(__m256d __a, __m256d __b)
|
|
|
2484
2439
|
/// Bits [63:0] are written to bits [127:64] of the return value. \n
|
|
2485
2440
|
/// Bits [191:128] are written to bits [255:192] of the return value. \n
|
|
2486
2441
|
/// \returns A 256-bit vector of [4 x double] containing the interleaved values.
|
|
2487
|
-
static __inline __m256d
|
|
2488
|
-
_mm256_unpacklo_pd(__m256d __a, __m256d __b)
|
|
2489
|
-
{
|
|
2442
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2443
|
+
_mm256_unpacklo_pd(__m256d __a, __m256d __b) {
|
|
2490
2444
|
return __builtin_shufflevector((__v4df)__a, (__v4df)__b, 0, 4, 0+2, 4+2);
|
|
2491
2445
|
}
|
|
2492
2446
|
|
|
@@ -2511,9 +2465,8 @@ _mm256_unpacklo_pd(__m256d __a, __m256d __b)
|
|
|
2511
2465
|
/// Bits [223:192] are written to bits [191:160] of the return value. \n
|
|
2512
2466
|
/// Bits [255:224] are written to bits [255:224] of the return value.
|
|
2513
2467
|
/// \returns A 256-bit vector of [8 x float] containing the interleaved values.
|
|
2514
|
-
static __inline __m256
|
|
2515
|
-
_mm256_unpackhi_ps(__m256 __a, __m256 __b)
|
|
2516
|
-
{
|
|
2468
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2469
|
+
_mm256_unpackhi_ps(__m256 __a, __m256 __b) {
|
|
2517
2470
|
return __builtin_shufflevector((__v8sf)__a, (__v8sf)__b, 2, 10, 2+1, 10+1, 6, 14, 6+1, 14+1);
|
|
2518
2471
|
}
|
|
2519
2472
|
|
|
@@ -2538,9 +2491,8 @@ _mm256_unpackhi_ps(__m256 __a, __m256 __b)
|
|
|
2538
2491
|
/// Bits [159:128] are written to bits [191:160] of the return value. \n
|
|
2539
2492
|
/// Bits [191:160] are written to bits [255:224] of the return value.
|
|
2540
2493
|
/// \returns A 256-bit vector of [8 x float] containing the interleaved values.
|
|
2541
|
-
static __inline __m256
|
|
2542
|
-
_mm256_unpacklo_ps(__m256 __a, __m256 __b)
|
|
2543
|
-
{
|
|
2494
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2495
|
+
_mm256_unpacklo_ps(__m256 __a, __m256 __b) {
|
|
2544
2496
|
return __builtin_shufflevector((__v8sf)__a, (__v8sf)__b, 0, 8, 0+1, 8+1, 4, 12, 4+1, 12+1);
|
|
2545
2497
|
}
|
|
2546
2498
|
|
|
@@ -2568,9 +2520,8 @@ _mm256_unpacklo_ps(__m256 __a, __m256 __b)
|
|
|
2568
2520
|
/// \param __b
|
|
2569
2521
|
/// A 128-bit vector of [2 x double].
|
|
2570
2522
|
/// \returns the ZF flag in the EFLAGS register.
|
|
2571
|
-
static __inline int
|
|
2572
|
-
|
|
2573
|
-
{
|
|
2523
|
+
static __inline int __DEFAULT_FN_ATTRS128_CONSTEXPR _mm_testz_pd(__m128d __a,
|
|
2524
|
+
__m128d __b) {
|
|
2574
2525
|
return __builtin_ia32_vtestzpd((__v2df)__a, (__v2df)__b);
|
|
2575
2526
|
}
|
|
2576
2527
|
|
|
@@ -2597,9 +2548,8 @@ _mm_testz_pd(__m128d __a, __m128d __b)
|
|
|
2597
2548
|
/// \param __b
|
|
2598
2549
|
/// A 128-bit vector of [2 x double].
|
|
2599
2550
|
/// \returns the CF flag in the EFLAGS register.
|
|
2600
|
-
static __inline int
|
|
2601
|
-
|
|
2602
|
-
{
|
|
2551
|
+
static __inline int __DEFAULT_FN_ATTRS128_CONSTEXPR _mm_testc_pd(__m128d __a,
|
|
2552
|
+
__m128d __b) {
|
|
2603
2553
|
return __builtin_ia32_vtestcpd((__v2df)__a, (__v2df)__b);
|
|
2604
2554
|
}
|
|
2605
2555
|
|
|
@@ -2627,9 +2577,8 @@ _mm_testc_pd(__m128d __a, __m128d __b)
|
|
|
2627
2577
|
/// \param __b
|
|
2628
2578
|
/// A 128-bit vector of [2 x double].
|
|
2629
2579
|
/// \returns 1 if both the ZF and CF flags are set to 0, otherwise returns 0.
|
|
2630
|
-
static __inline int
|
|
2631
|
-
_mm_testnzc_pd(__m128d __a, __m128d __b)
|
|
2632
|
-
{
|
|
2580
|
+
static __inline int __DEFAULT_FN_ATTRS128_CONSTEXPR
|
|
2581
|
+
_mm_testnzc_pd(__m128d __a, __m128d __b) {
|
|
2633
2582
|
return __builtin_ia32_vtestnzcpd((__v2df)__a, (__v2df)__b);
|
|
2634
2583
|
}
|
|
2635
2584
|
|
|
@@ -2656,9 +2605,8 @@ _mm_testnzc_pd(__m128d __a, __m128d __b)
|
|
|
2656
2605
|
/// \param __b
|
|
2657
2606
|
/// A 128-bit vector of [4 x float].
|
|
2658
2607
|
/// \returns the ZF flag.
|
|
2659
|
-
static __inline int
|
|
2660
|
-
|
|
2661
|
-
{
|
|
2608
|
+
static __inline int __DEFAULT_FN_ATTRS128_CONSTEXPR _mm_testz_ps(__m128 __a,
|
|
2609
|
+
__m128 __b) {
|
|
2662
2610
|
return __builtin_ia32_vtestzps((__v4sf)__a, (__v4sf)__b);
|
|
2663
2611
|
}
|
|
2664
2612
|
|
|
@@ -2685,9 +2633,8 @@ _mm_testz_ps(__m128 __a, __m128 __b)
|
|
|
2685
2633
|
/// \param __b
|
|
2686
2634
|
/// A 128-bit vector of [4 x float].
|
|
2687
2635
|
/// \returns the CF flag.
|
|
2688
|
-
static __inline int
|
|
2689
|
-
|
|
2690
|
-
{
|
|
2636
|
+
static __inline int __DEFAULT_FN_ATTRS128_CONSTEXPR _mm_testc_ps(__m128 __a,
|
|
2637
|
+
__m128 __b) {
|
|
2691
2638
|
return __builtin_ia32_vtestcps((__v4sf)__a, (__v4sf)__b);
|
|
2692
2639
|
}
|
|
2693
2640
|
|
|
@@ -2715,9 +2662,8 @@ _mm_testc_ps(__m128 __a, __m128 __b)
|
|
|
2715
2662
|
/// \param __b
|
|
2716
2663
|
/// A 128-bit vector of [4 x float].
|
|
2717
2664
|
/// \returns 1 if both the ZF and CF flags are set to 0, otherwise returns 0.
|
|
2718
|
-
static __inline int
|
|
2719
|
-
|
|
2720
|
-
{
|
|
2665
|
+
static __inline int __DEFAULT_FN_ATTRS128_CONSTEXPR _mm_testnzc_ps(__m128 __a,
|
|
2666
|
+
__m128 __b) {
|
|
2721
2667
|
return __builtin_ia32_vtestnzcps((__v4sf)__a, (__v4sf)__b);
|
|
2722
2668
|
}
|
|
2723
2669
|
|
|
@@ -2744,9 +2690,8 @@ _mm_testnzc_ps(__m128 __a, __m128 __b)
|
|
|
2744
2690
|
/// \param __b
|
|
2745
2691
|
/// A 256-bit vector of [4 x double].
|
|
2746
2692
|
/// \returns the ZF flag.
|
|
2747
|
-
static __inline int
|
|
2748
|
-
|
|
2749
|
-
{
|
|
2693
|
+
static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR _mm256_testz_pd(__m256d __a,
|
|
2694
|
+
__m256d __b) {
|
|
2750
2695
|
return __builtin_ia32_vtestzpd256((__v4df)__a, (__v4df)__b);
|
|
2751
2696
|
}
|
|
2752
2697
|
|
|
@@ -2773,9 +2718,8 @@ _mm256_testz_pd(__m256d __a, __m256d __b)
|
|
|
2773
2718
|
/// \param __b
|
|
2774
2719
|
/// A 256-bit vector of [4 x double].
|
|
2775
2720
|
/// \returns the CF flag.
|
|
2776
|
-
static __inline int
|
|
2777
|
-
|
|
2778
|
-
{
|
|
2721
|
+
static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR _mm256_testc_pd(__m256d __a,
|
|
2722
|
+
__m256d __b) {
|
|
2779
2723
|
return __builtin_ia32_vtestcpd256((__v4df)__a, (__v4df)__b);
|
|
2780
2724
|
}
|
|
2781
2725
|
|
|
@@ -2803,9 +2747,8 @@ _mm256_testc_pd(__m256d __a, __m256d __b)
|
|
|
2803
2747
|
/// \param __b
|
|
2804
2748
|
/// A 256-bit vector of [4 x double].
|
|
2805
2749
|
/// \returns 1 if both the ZF and CF flags are set to 0, otherwise returns 0.
|
|
2806
|
-
static __inline int
|
|
2807
|
-
_mm256_testnzc_pd(__m256d __a, __m256d __b)
|
|
2808
|
-
{
|
|
2750
|
+
static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2751
|
+
_mm256_testnzc_pd(__m256d __a, __m256d __b) {
|
|
2809
2752
|
return __builtin_ia32_vtestnzcpd256((__v4df)__a, (__v4df)__b);
|
|
2810
2753
|
}
|
|
2811
2754
|
|
|
@@ -2832,9 +2775,8 @@ _mm256_testnzc_pd(__m256d __a, __m256d __b)
|
|
|
2832
2775
|
/// \param __b
|
|
2833
2776
|
/// A 256-bit vector of [8 x float].
|
|
2834
2777
|
/// \returns the ZF flag.
|
|
2835
|
-
static __inline int
|
|
2836
|
-
|
|
2837
|
-
{
|
|
2778
|
+
static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR _mm256_testz_ps(__m256 __a,
|
|
2779
|
+
__m256 __b) {
|
|
2838
2780
|
return __builtin_ia32_vtestzps256((__v8sf)__a, (__v8sf)__b);
|
|
2839
2781
|
}
|
|
2840
2782
|
|
|
@@ -2861,9 +2803,8 @@ _mm256_testz_ps(__m256 __a, __m256 __b)
|
|
|
2861
2803
|
/// \param __b
|
|
2862
2804
|
/// A 256-bit vector of [8 x float].
|
|
2863
2805
|
/// \returns the CF flag.
|
|
2864
|
-
static __inline int
|
|
2865
|
-
|
|
2866
|
-
{
|
|
2806
|
+
static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR _mm256_testc_ps(__m256 __a,
|
|
2807
|
+
__m256 __b) {
|
|
2867
2808
|
return __builtin_ia32_vtestcps256((__v8sf)__a, (__v8sf)__b);
|
|
2868
2809
|
}
|
|
2869
2810
|
|
|
@@ -2891,9 +2832,8 @@ _mm256_testc_ps(__m256 __a, __m256 __b)
|
|
|
2891
2832
|
/// \param __b
|
|
2892
2833
|
/// A 256-bit vector of [8 x float].
|
|
2893
2834
|
/// \returns 1 if both the ZF and CF flags are set to 0, otherwise returns 0.
|
|
2894
|
-
static __inline int
|
|
2895
|
-
|
|
2896
|
-
{
|
|
2835
|
+
static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR _mm256_testnzc_ps(__m256 __a,
|
|
2836
|
+
__m256 __b) {
|
|
2897
2837
|
return __builtin_ia32_vtestnzcps256((__v8sf)__a, (__v8sf)__b);
|
|
2898
2838
|
}
|
|
2899
2839
|
|
|
@@ -2917,9 +2857,8 @@ _mm256_testnzc_ps(__m256 __a, __m256 __b)
|
|
|
2917
2857
|
/// \param __b
|
|
2918
2858
|
/// A 256-bit integer vector.
|
|
2919
2859
|
/// \returns the ZF flag.
|
|
2920
|
-
static __inline int
|
|
2921
|
-
_mm256_testz_si256(__m256i __a, __m256i __b)
|
|
2922
|
-
{
|
|
2860
|
+
static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2861
|
+
_mm256_testz_si256(__m256i __a, __m256i __b) {
|
|
2923
2862
|
return __builtin_ia32_ptestz256((__v4di)__a, (__v4di)__b);
|
|
2924
2863
|
}
|
|
2925
2864
|
|
|
@@ -2943,9 +2882,8 @@ _mm256_testz_si256(__m256i __a, __m256i __b)
|
|
|
2943
2882
|
/// \param __b
|
|
2944
2883
|
/// A 256-bit integer vector.
|
|
2945
2884
|
/// \returns the CF flag.
|
|
2946
|
-
static __inline int
|
|
2947
|
-
_mm256_testc_si256(__m256i __a, __m256i __b)
|
|
2948
|
-
{
|
|
2885
|
+
static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2886
|
+
_mm256_testc_si256(__m256i __a, __m256i __b) {
|
|
2949
2887
|
return __builtin_ia32_ptestc256((__v4di)__a, (__v4di)__b);
|
|
2950
2888
|
}
|
|
2951
2889
|
|
|
@@ -2970,9 +2908,8 @@ _mm256_testc_si256(__m256i __a, __m256i __b)
|
|
|
2970
2908
|
/// \param __b
|
|
2971
2909
|
/// A 256-bit integer vector.
|
|
2972
2910
|
/// \returns 1 if both the ZF and CF flags are set to 0, otherwise returns 0.
|
|
2973
|
-
static __inline int
|
|
2974
|
-
_mm256_testnzc_si256(__m256i __a, __m256i __b)
|
|
2975
|
-
{
|
|
2911
|
+
static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2912
|
+
_mm256_testnzc_si256(__m256i __a, __m256i __b) {
|
|
2976
2913
|
return __builtin_ia32_ptestnzc256((__v4di)__a, (__v4di)__b);
|
|
2977
2914
|
}
|
|
2978
2915
|
|
|
@@ -2989,9 +2926,8 @@ _mm256_testnzc_si256(__m256i __a, __m256i __b)
|
|
|
2989
2926
|
/// A 256-bit vector of [4 x double] containing the double-precision
|
|
2990
2927
|
/// floating point values with sign bits to be extracted.
|
|
2991
2928
|
/// \returns The sign bits from the operand, written to bits [3:0].
|
|
2992
|
-
static __inline int
|
|
2993
|
-
_mm256_movemask_pd(__m256d __a)
|
|
2994
|
-
{
|
|
2929
|
+
static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2930
|
+
_mm256_movemask_pd(__m256d __a) {
|
|
2995
2931
|
return __builtin_ia32_movmskpd256((__v4df)__a);
|
|
2996
2932
|
}
|
|
2997
2933
|
|
|
@@ -3007,9 +2943,8 @@ _mm256_movemask_pd(__m256d __a)
|
|
|
3007
2943
|
/// A 256-bit vector of [8 x float] containing the single-precision floating
|
|
3008
2944
|
/// point values with sign bits to be extracted.
|
|
3009
2945
|
/// \returns The sign bits from the operand, written to bits [7:0].
|
|
3010
|
-
static __inline int
|
|
3011
|
-
_mm256_movemask_ps(__m256 __a)
|
|
3012
|
-
{
|
|
2946
|
+
static __inline int __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
2947
|
+
_mm256_movemask_ps(__m256 __a) {
|
|
3013
2948
|
return __builtin_ia32_movmskps256((__v8sf)__a);
|
|
3014
2949
|
}
|
|
3015
2950
|
|
|
@@ -3666,9 +3601,7 @@ _mm256_undefined_pd(void)
|
|
|
3666
3601
|
/// This intrinsic has no corresponding instruction.
|
|
3667
3602
|
///
|
|
3668
3603
|
/// \returns A 256-bit vector of [8 x float] containing undefined values.
|
|
3669
|
-
static __inline__ __m256 __DEFAULT_FN_ATTRS
|
|
3670
|
-
_mm256_undefined_ps(void)
|
|
3671
|
-
{
|
|
3604
|
+
static __inline__ __m256 __DEFAULT_FN_ATTRS _mm256_undefined_ps(void) {
|
|
3672
3605
|
return (__m256)__builtin_ia32_undef256();
|
|
3673
3606
|
}
|
|
3674
3607
|
|
|
@@ -3777,7 +3710,7 @@ _mm256_set_ps(float __a, float __b, float __c, float __d,
|
|
|
3777
3710
|
/// \param __i7
|
|
3778
3711
|
/// A 32-bit integral value used to initialize bits [31:0] of the result.
|
|
3779
3712
|
/// \returns An initialized 256-bit integer vector.
|
|
3780
|
-
static __inline __m256i
|
|
3713
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
3781
3714
|
_mm256_set_epi32(int __i0, int __i1, int __i2, int __i3,
|
|
3782
3715
|
int __i4, int __i5, int __i6, int __i7)
|
|
3783
3716
|
{
|
|
@@ -3825,7 +3758,7 @@ _mm256_set_epi32(int __i0, int __i1, int __i2, int __i3,
|
|
|
3825
3758
|
/// \param __w00
|
|
3826
3759
|
/// A 16-bit integral value used to initialize bits [15:0] of the result.
|
|
3827
3760
|
/// \returns An initialized 256-bit integer vector.
|
|
3828
|
-
static __inline __m256i
|
|
3761
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
3829
3762
|
_mm256_set_epi16(short __w15, short __w14, short __w13, short __w12,
|
|
3830
3763
|
short __w11, short __w10, short __w09, short __w08,
|
|
3831
3764
|
short __w07, short __w06, short __w05, short __w04,
|
|
@@ -3908,7 +3841,7 @@ _mm256_set_epi16(short __w15, short __w14, short __w13, short __w12,
|
|
|
3908
3841
|
/// \param __b00
|
|
3909
3842
|
/// An 8-bit integral value used to initialize bits [7:0] of the result.
|
|
3910
3843
|
/// \returns An initialized 256-bit integer vector.
|
|
3911
|
-
static __inline __m256i
|
|
3844
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
3912
3845
|
_mm256_set_epi8(char __b31, char __b30, char __b29, char __b28,
|
|
3913
3846
|
char __b27, char __b26, char __b25, char __b24,
|
|
3914
3847
|
char __b23, char __b22, char __b21, char __b20,
|
|
@@ -3943,7 +3876,7 @@ _mm256_set_epi8(char __b31, char __b30, char __b29, char __b28,
|
|
|
3943
3876
|
/// \param __d
|
|
3944
3877
|
/// A 64-bit integral value used to initialize bits [63:0] of the result.
|
|
3945
3878
|
/// \returns An initialized 256-bit integer vector.
|
|
3946
|
-
static __inline __m256i
|
|
3879
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
3947
3880
|
_mm256_set_epi64x(long long __a, long long __b, long long __c, long long __d)
|
|
3948
3881
|
{
|
|
3949
3882
|
return __extension__ (__m256i)(__v4di){ __d, __c, __b, __a };
|
|
@@ -4044,7 +3977,7 @@ _mm256_setr_ps(float __a, float __b, float __c, float __d,
|
|
|
4044
3977
|
/// \param __i7
|
|
4045
3978
|
/// A 32-bit integral value used to initialize bits [255:224] of the result.
|
|
4046
3979
|
/// \returns An initialized 256-bit integer vector.
|
|
4047
|
-
static __inline __m256i
|
|
3980
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4048
3981
|
_mm256_setr_epi32(int __i0, int __i1, int __i2, int __i3,
|
|
4049
3982
|
int __i4, int __i5, int __i6, int __i7)
|
|
4050
3983
|
{
|
|
@@ -4092,7 +4025,7 @@ _mm256_setr_epi32(int __i0, int __i1, int __i2, int __i3,
|
|
|
4092
4025
|
/// \param __w00
|
|
4093
4026
|
/// A 16-bit integral value used to initialize bits [255:240] of the result.
|
|
4094
4027
|
/// \returns An initialized 256-bit integer vector.
|
|
4095
|
-
static __inline __m256i
|
|
4028
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4096
4029
|
_mm256_setr_epi16(short __w15, short __w14, short __w13, short __w12,
|
|
4097
4030
|
short __w11, short __w10, short __w09, short __w08,
|
|
4098
4031
|
short __w07, short __w06, short __w05, short __w04,
|
|
@@ -4177,7 +4110,7 @@ _mm256_setr_epi16(short __w15, short __w14, short __w13, short __w12,
|
|
|
4177
4110
|
/// \param __b00
|
|
4178
4111
|
/// An 8-bit integral value used to initialize bits [255:248] of the result.
|
|
4179
4112
|
/// \returns An initialized 256-bit integer vector.
|
|
4180
|
-
static __inline __m256i
|
|
4113
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4181
4114
|
_mm256_setr_epi8(char __b31, char __b30, char __b29, char __b28,
|
|
4182
4115
|
char __b27, char __b26, char __b25, char __b24,
|
|
4183
4116
|
char __b23, char __b22, char __b21, char __b20,
|
|
@@ -4210,7 +4143,7 @@ _mm256_setr_epi8(char __b31, char __b30, char __b29, char __b28,
|
|
|
4210
4143
|
/// \param __d
|
|
4211
4144
|
/// A 64-bit integral value used to initialize bits [255:192] of the result.
|
|
4212
4145
|
/// \returns An initialized 256-bit integer vector.
|
|
4213
|
-
static __inline __m256i
|
|
4146
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4214
4147
|
_mm256_setr_epi64x(long long __a, long long __b, long long __c, long long __d)
|
|
4215
4148
|
{
|
|
4216
4149
|
return _mm256_set_epi64x(__d, __c, __b, __a);
|
|
@@ -4267,7 +4200,7 @@ _mm256_set1_ps(float __w)
|
|
|
4267
4200
|
/// A 32-bit integral value used to initialize each vector element of the
|
|
4268
4201
|
/// result.
|
|
4269
4202
|
/// \returns An initialized 256-bit integer vector of [8 x i32].
|
|
4270
|
-
static __inline __m256i
|
|
4203
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4271
4204
|
_mm256_set1_epi32(int __i)
|
|
4272
4205
|
{
|
|
4273
4206
|
return _mm256_set_epi32(__i, __i, __i, __i, __i, __i, __i, __i);
|
|
@@ -4285,7 +4218,7 @@ _mm256_set1_epi32(int __i)
|
|
|
4285
4218
|
/// A 16-bit integral value used to initialize each vector element of the
|
|
4286
4219
|
/// result.
|
|
4287
4220
|
/// \returns An initialized 256-bit integer vector of [16 x i16].
|
|
4288
|
-
static __inline __m256i
|
|
4221
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4289
4222
|
_mm256_set1_epi16(short __w)
|
|
4290
4223
|
{
|
|
4291
4224
|
return _mm256_set_epi16(__w, __w, __w, __w, __w, __w, __w, __w,
|
|
@@ -4303,7 +4236,7 @@ _mm256_set1_epi16(short __w)
|
|
|
4303
4236
|
/// An 8-bit integral value used to initialize each vector element of the
|
|
4304
4237
|
/// result.
|
|
4305
4238
|
/// \returns An initialized 256-bit integer vector of [32 x i8].
|
|
4306
|
-
static __inline __m256i
|
|
4239
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4307
4240
|
_mm256_set1_epi8(char __b)
|
|
4308
4241
|
{
|
|
4309
4242
|
return _mm256_set_epi8(__b, __b, __b, __b, __b, __b, __b, __b,
|
|
@@ -4324,7 +4257,7 @@ _mm256_set1_epi8(char __b)
|
|
|
4324
4257
|
/// A 64-bit integral value used to initialize each vector element of the
|
|
4325
4258
|
/// result.
|
|
4326
4259
|
/// \returns An initialized 256-bit integer vector of [4 x i64].
|
|
4327
|
-
static __inline __m256i
|
|
4260
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4328
4261
|
_mm256_set1_epi64x(long long __q)
|
|
4329
4262
|
{
|
|
4330
4263
|
return _mm256_set_epi64x(__q, __q, __q, __q);
|
|
@@ -4379,7 +4312,7 @@ _mm256_setzero_si256(void) {
|
|
|
4379
4312
|
/// A 256-bit floating-point vector of [4 x double].
|
|
4380
4313
|
/// \returns A 256-bit floating-point vector of [8 x float] containing the same
|
|
4381
4314
|
/// bitwise pattern as the parameter.
|
|
4382
|
-
static __inline __m256
|
|
4315
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4383
4316
|
_mm256_castpd_ps(__m256d __a)
|
|
4384
4317
|
{
|
|
4385
4318
|
return (__m256)__a;
|
|
@@ -4396,7 +4329,7 @@ _mm256_castpd_ps(__m256d __a)
|
|
|
4396
4329
|
/// A 256-bit floating-point vector of [4 x double].
|
|
4397
4330
|
/// \returns A 256-bit integer vector containing the same bitwise pattern as the
|
|
4398
4331
|
/// parameter.
|
|
4399
|
-
static __inline __m256i
|
|
4332
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4400
4333
|
_mm256_castpd_si256(__m256d __a)
|
|
4401
4334
|
{
|
|
4402
4335
|
return (__m256i)__a;
|
|
@@ -4413,7 +4346,7 @@ _mm256_castpd_si256(__m256d __a)
|
|
|
4413
4346
|
/// A 256-bit floating-point vector of [8 x float].
|
|
4414
4347
|
/// \returns A 256-bit floating-point vector of [4 x double] containing the same
|
|
4415
4348
|
/// bitwise pattern as the parameter.
|
|
4416
|
-
static __inline __m256d
|
|
4349
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4417
4350
|
_mm256_castps_pd(__m256 __a)
|
|
4418
4351
|
{
|
|
4419
4352
|
return (__m256d)__a;
|
|
@@ -4430,7 +4363,7 @@ _mm256_castps_pd(__m256 __a)
|
|
|
4430
4363
|
/// A 256-bit floating-point vector of [8 x float].
|
|
4431
4364
|
/// \returns A 256-bit integer vector containing the same bitwise pattern as the
|
|
4432
4365
|
/// parameter.
|
|
4433
|
-
static __inline __m256i
|
|
4366
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4434
4367
|
_mm256_castps_si256(__m256 __a)
|
|
4435
4368
|
{
|
|
4436
4369
|
return (__m256i)__a;
|
|
@@ -4447,7 +4380,7 @@ _mm256_castps_si256(__m256 __a)
|
|
|
4447
4380
|
/// A 256-bit integer vector.
|
|
4448
4381
|
/// \returns A 256-bit floating-point vector of [8 x float] containing the same
|
|
4449
4382
|
/// bitwise pattern as the parameter.
|
|
4450
|
-
static __inline __m256
|
|
4383
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4451
4384
|
_mm256_castsi256_ps(__m256i __a)
|
|
4452
4385
|
{
|
|
4453
4386
|
return (__m256)__a;
|
|
@@ -4464,7 +4397,7 @@ _mm256_castsi256_ps(__m256i __a)
|
|
|
4464
4397
|
/// A 256-bit integer vector.
|
|
4465
4398
|
/// \returns A 256-bit floating-point vector of [4 x double] containing the same
|
|
4466
4399
|
/// bitwise pattern as the parameter.
|
|
4467
|
-
static __inline __m256d
|
|
4400
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4468
4401
|
_mm256_castsi256_pd(__m256i __a)
|
|
4469
4402
|
{
|
|
4470
4403
|
return (__m256d)__a;
|
|
@@ -4481,7 +4414,7 @@ _mm256_castsi256_pd(__m256i __a)
|
|
|
4481
4414
|
/// A 256-bit floating-point vector of [4 x double].
|
|
4482
4415
|
/// \returns A 128-bit floating-point vector of [2 x double] containing the
|
|
4483
4416
|
/// lower 128 bits of the parameter.
|
|
4484
|
-
static __inline __m128d
|
|
4417
|
+
static __inline __m128d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4485
4418
|
_mm256_castpd256_pd128(__m256d __a)
|
|
4486
4419
|
{
|
|
4487
4420
|
return __builtin_shufflevector((__v4df)__a, (__v4df)__a, 0, 1);
|
|
@@ -4498,7 +4431,7 @@ _mm256_castpd256_pd128(__m256d __a)
|
|
|
4498
4431
|
/// A 256-bit floating-point vector of [8 x float].
|
|
4499
4432
|
/// \returns A 128-bit floating-point vector of [4 x float] containing the
|
|
4500
4433
|
/// lower 128 bits of the parameter.
|
|
4501
|
-
static __inline __m128
|
|
4434
|
+
static __inline __m128 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4502
4435
|
_mm256_castps256_ps128(__m256 __a)
|
|
4503
4436
|
{
|
|
4504
4437
|
return __builtin_shufflevector((__v8sf)__a, (__v8sf)__a, 0, 1, 2, 3);
|
|
@@ -4514,7 +4447,7 @@ _mm256_castps256_ps128(__m256 __a)
|
|
|
4514
4447
|
/// A 256-bit integer vector.
|
|
4515
4448
|
/// \returns A 128-bit integer vector containing the lower 128 bits of the
|
|
4516
4449
|
/// parameter.
|
|
4517
|
-
static __inline __m128i
|
|
4450
|
+
static __inline __m128i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4518
4451
|
_mm256_castsi256_si128(__m256i __a)
|
|
4519
4452
|
{
|
|
4520
4453
|
return __builtin_shufflevector((__v4di)__a, (__v4di)__a, 0, 1);
|
|
@@ -4598,9 +4531,8 @@ _mm256_castsi128_si256(__m128i __a)
|
|
|
4598
4531
|
/// A 128-bit vector of [2 x double].
|
|
4599
4532
|
/// \returns A 256-bit floating-point vector of [4 x double]. The lower 128 bits
|
|
4600
4533
|
/// contain the value of the parameter. The upper 128 bits are set to zero.
|
|
4601
|
-
static __inline __m256d
|
|
4602
|
-
_mm256_zextpd128_pd256(__m128d __a)
|
|
4603
|
-
{
|
|
4534
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4535
|
+
_mm256_zextpd128_pd256(__m128d __a) {
|
|
4604
4536
|
return __builtin_shufflevector((__v2df)__a, (__v2df)_mm_setzero_pd(), 0, 1, 2, 3);
|
|
4605
4537
|
}
|
|
4606
4538
|
|
|
@@ -4616,9 +4548,8 @@ _mm256_zextpd128_pd256(__m128d __a)
|
|
|
4616
4548
|
/// A 128-bit vector of [4 x float].
|
|
4617
4549
|
/// \returns A 256-bit floating-point vector of [8 x float]. The lower 128 bits
|
|
4618
4550
|
/// contain the value of the parameter. The upper 128 bits are set to zero.
|
|
4619
|
-
static __inline __m256
|
|
4620
|
-
_mm256_zextps128_ps256(__m128 __a)
|
|
4621
|
-
{
|
|
4551
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4552
|
+
_mm256_zextps128_ps256(__m128 __a) {
|
|
4622
4553
|
return __builtin_shufflevector((__v4sf)__a, (__v4sf)_mm_setzero_ps(), 0, 1, 2, 3, 4, 5, 6, 7);
|
|
4623
4554
|
}
|
|
4624
4555
|
|
|
@@ -4634,9 +4565,8 @@ _mm256_zextps128_ps256(__m128 __a)
|
|
|
4634
4565
|
/// A 128-bit integer vector.
|
|
4635
4566
|
/// \returns A 256-bit integer vector. The lower 128 bits contain the value of
|
|
4636
4567
|
/// the parameter. The upper 128 bits are set to zero.
|
|
4637
|
-
static __inline __m256i
|
|
4638
|
-
_mm256_zextsi128_si256(__m128i __a)
|
|
4639
|
-
{
|
|
4568
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4569
|
+
_mm256_zextsi128_si256(__m128i __a) {
|
|
4640
4570
|
return __builtin_shufflevector((__v2di)__a, (__v2di)_mm_setzero_si128(), 0, 1, 2, 3);
|
|
4641
4571
|
}
|
|
4642
4572
|
|
|
@@ -4851,9 +4781,8 @@ _mm256_zextsi128_si256(__m128i __a)
|
|
|
4851
4781
|
/// 128 bits of the result.
|
|
4852
4782
|
/// \returns A 256-bit floating-point vector of [8 x float] containing the
|
|
4853
4783
|
/// concatenated result.
|
|
4854
|
-
static __inline __m256
|
|
4855
|
-
_mm256_set_m128
|
|
4856
|
-
{
|
|
4784
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4785
|
+
_mm256_set_m128(__m128 __hi, __m128 __lo) {
|
|
4857
4786
|
return (__m256) __builtin_shufflevector((__v4sf)__lo, (__v4sf)__hi, 0, 1, 2, 3, 4, 5, 6, 7);
|
|
4858
4787
|
}
|
|
4859
4788
|
|
|
@@ -4872,9 +4801,8 @@ _mm256_set_m128 (__m128 __hi, __m128 __lo)
|
|
|
4872
4801
|
/// 128 bits of the result.
|
|
4873
4802
|
/// \returns A 256-bit floating-point vector of [4 x double] containing the
|
|
4874
4803
|
/// concatenated result.
|
|
4875
|
-
static __inline __m256d
|
|
4876
|
-
_mm256_set_m128d
|
|
4877
|
-
{
|
|
4804
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4805
|
+
_mm256_set_m128d(__m128d __hi, __m128d __lo) {
|
|
4878
4806
|
return (__m256d) __builtin_shufflevector((__v2df)__lo, (__v2df)__hi, 0, 1, 2, 3);
|
|
4879
4807
|
}
|
|
4880
4808
|
|
|
@@ -4892,9 +4820,8 @@ _mm256_set_m128d (__m128d __hi, __m128d __lo)
|
|
|
4892
4820
|
/// A 128-bit integer vector to be copied to the lower 128 bits of the
|
|
4893
4821
|
/// result.
|
|
4894
4822
|
/// \returns A 256-bit integer vector containing the concatenated result.
|
|
4895
|
-
static __inline __m256i
|
|
4896
|
-
_mm256_set_m128i
|
|
4897
|
-
{
|
|
4823
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4824
|
+
_mm256_set_m128i(__m128i __hi, __m128i __lo) {
|
|
4898
4825
|
return (__m256i) __builtin_shufflevector((__v2di)__lo, (__v2di)__hi, 0, 1, 2, 3);
|
|
4899
4826
|
}
|
|
4900
4827
|
|
|
@@ -4915,9 +4842,8 @@ _mm256_set_m128i (__m128i __hi, __m128i __lo)
|
|
|
4915
4842
|
/// 128 bits of the result.
|
|
4916
4843
|
/// \returns A 256-bit floating-point vector of [8 x float] containing the
|
|
4917
4844
|
/// concatenated result.
|
|
4918
|
-
static __inline __m256
|
|
4919
|
-
_mm256_setr_m128
|
|
4920
|
-
{
|
|
4845
|
+
static __inline __m256 __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4846
|
+
_mm256_setr_m128(__m128 __lo, __m128 __hi) {
|
|
4921
4847
|
return _mm256_set_m128(__hi, __lo);
|
|
4922
4848
|
}
|
|
4923
4849
|
|
|
@@ -4938,9 +4864,8 @@ _mm256_setr_m128 (__m128 __lo, __m128 __hi)
|
|
|
4938
4864
|
/// 128 bits of the result.
|
|
4939
4865
|
/// \returns A 256-bit floating-point vector of [4 x double] containing the
|
|
4940
4866
|
/// concatenated result.
|
|
4941
|
-
static __inline __m256d
|
|
4942
|
-
_mm256_setr_m128d
|
|
4943
|
-
{
|
|
4867
|
+
static __inline __m256d __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4868
|
+
_mm256_setr_m128d(__m128d __lo, __m128d __hi) {
|
|
4944
4869
|
return (__m256d)_mm256_set_m128d(__hi, __lo);
|
|
4945
4870
|
}
|
|
4946
4871
|
|
|
@@ -4959,9 +4884,8 @@ _mm256_setr_m128d (__m128d __lo, __m128d __hi)
|
|
|
4959
4884
|
/// A 128-bit integer vector to be copied to the upper 128 bits of the
|
|
4960
4885
|
/// result.
|
|
4961
4886
|
/// \returns A 256-bit integer vector containing the concatenated result.
|
|
4962
|
-
static __inline __m256i
|
|
4963
|
-
_mm256_setr_m128i
|
|
4964
|
-
{
|
|
4887
|
+
static __inline __m256i __DEFAULT_FN_ATTRS_CONSTEXPR
|
|
4888
|
+
_mm256_setr_m128i(__m128i __lo, __m128i __hi) {
|
|
4965
4889
|
return (__m256i)_mm256_set_m128i(__hi, __lo);
|
|
4966
4890
|
}
|
|
4967
4891
|
|