1. 9a50249 Add _rdrand{16,32,64}_step intrinsics to immintrin.h by Benjamin Kramer · 12 years ago
  2. 435d268 Rename tzcnt intrinsics to match gcc. by Craig Topper · 12 years ago
  3. e25d3df std::nullptr_t support in MS headers, from João Matos. by Douglas Gregor · 12 years ago
  4. 56c045e X86: add more GATHER intrinsics in Clang by Manman Ren · 12 years ago
  5. c84804a X86: add more GATHER intrinsics in Clang by Manman Ren · 12 years ago
  6. 5283c99 X86: add GATHER intrinsics (AVX2) in Clang by Manman Ren · 12 years ago
  7. 111684e Headers/xopintrin.h: Try to fix r158492. Did you mean, mm256? by NAKAMURA Takumi · 12 years ago
  8. cda8df0 Add XOP frcz instrinsics. by Craig Topper · 12 years ago
  9. 5daa4de Add XOP permute intrinsics. by Craig Topper · 12 years ago
  10. ecbc009 Add XOP shift and compare intrinsics. by Craig Topper · 12 years ago
  11. 3335eb7 Add XOP vprot* instruction intrinsics by Craig Topper · 12 years ago
  12. 18b73ea More XOP intrinsics by Craig Topper · 12 years ago
  13. 239c030 Begin adding XOP intrinsics by Craig Topper · 12 years ago
  14. 97075fb Add fma3 intrinsic header file. by Craig Topper · 12 years ago
  15. 3c0bc15 Add builtin for pclmulqdq instruction. by Craig Topper · 12 years ago
  16. 1faf8a7 Update FIXME. ABM is already covered by LZCNT and POPCNT. by Craig Topper · 12 years ago
  17. 6ea73b2 Install ammintrin.h in the cmake build. by Benjamin Kramer · 12 years ago
  18. 6b97877 Add an ammintrin.h header for SSE4a intrinsics. by Benjamin Kramer · 12 years ago
  19. 1785c36 Remove the 'intrin.h' builtin header file and its tests for now. by Chandler Carruth · 12 years ago
  20. c5713cf Get rid of storelv4si builtin as it can be expressed directly. This is general by Chad Rosier · 12 years ago
  21. 3030066 Expand #include_next in float.h from mingw to _msc_ver. by Nico Weber · 12 years ago
  22. 08e46f9 Let NULL and MSVC headers coexist better. by Nico Weber · 12 years ago
  23. e70372d Adding information about what intrinsics still need to be implemented for MSVC compatibility. by Aaron Ballman · 12 years ago
  24. 8ac95f1 Fix a typo spotted by Matt. by Chandler Carruth · 12 years ago
  25. 5775351 Introduce an initial sketch of a MSVC compatible 'intrin.h' builtin by Chandler Carruth · 12 years ago
  26. 49a110d Convert vperm2f128 and vperm2i128 intrinsics back to using llvm intrinsics. Unfortunately, these instructions have behavior that can't be modeled with shuffle vector. by Craig Topper · 12 years ago
  27. b5491f3 Change _mm256_permute4x64_epi64 and _mm256_permute4x64_pd to use builtin_shufflevector instead of specific builtins. Old builtins will be removed from llvm now that vpermq/vpermpd are supported by shuffle lowering code. by Craig Topper · 12 years ago
  28. 41a7e89 Fix the signatures for the _mm256_storeu2_* intrinsics. PR12532 by Chad Rosier · 12 years ago
  29. 5aeaca3 Correctly check argument types for some vector macros in smmintrin.h. Put parentheses around uses of vector macro arguments. by Craig Topper · 12 years ago
  30. 5228982 Add _mm_minpos_epu16 to smmintrin.h. Fixes PR12399. by Craig Topper · 12 years ago
  31. 5629646 Fix shuffle vector calculation for mm_permute_ps. Fixes PR 12401. by Craig Topper · 12 years ago
  32. be5ff2f unwind.h fix for -fvisibility=hidden users. This fixes firefox build in a system by Rafael Espindola · 12 years ago
  33. db163c8 [avx] Define the _mm256_loadu2_xxx and _mm256_storeu2_xxx intrinsics. by Chad Rosier · 12 years ago
  34. d184e53 * tgmath_logb.patch implements the missing logb function (see C99 standard 7.22, paragraph 5). * tgmath_fabs_complex.patch corrects the return types for the complex fabs functions. These must be non-complex float/double/long double (see C99 standard 7.22, paragraph 4 and 7.3.8.1). Patch contributed by Kristof Beyls. by Howard Hinnant · 12 years ago
  35. f18a87b Allow linux builds to take advantage of libunwind to get unwind.h if by Jeffrey Yasskin · 12 years ago
  36. 345032a Add 3dNOW intrinsic header to x86intrin.h, conditioned on __3dNOW__ to by Chandler Carruth · 12 years ago
  37. cfa8e65 Remove vperm2f* and vperm2i builtins. Same effect can be achieved with builtin_shufflevector. by Craig Topper · 12 years ago
  38. 10c57a8 Remove vpermilp* builtins. Same effect can be achieved with builtin_shufflevector. by Craig Topper · 12 years ago
  39. 88ce85f Add C11 FLT_TRUE_MIN and friends. <rdar://problem/10812837>. by Eli Friedman · 12 years ago
  40. 279114c Comment mystery code. by Nick Lewycky · 12 years ago
  41. f42f85c Make _mm_cmpgt_epi8 immute to -funsigned-char. by Nick Lewycky · 12 years ago
  42. 2f04f18 Back out my heinous hack that tricked the module generation mechanism by Douglas Gregor · 12 years ago
  43. eb7b9eb Split compiler builtin module into "stdlib" builtins and "intrinsic" by Douglas Gregor · 12 years ago
  44. 8f7d64b Remove tgmath.h from the module map for now, because it currently causes a by Douglas Gregor · 12 years ago
  45. ba0e318 Fix typo spotted by Sebastian. Thanks! by Douglas Gregor · 12 years ago
  46. f8495d6 Cleanup 3dnow builtin handling. Most of them were already handled by LLVM connecting intrinsics and builtins in IntrinsicsX86.td. by Craig Topper · 12 years ago
  47. e727d21 Introduce TargetInfo::hasFeature() to query various feature names in by Douglas Gregor · 12 years ago
  48. ebb1004 Just disable the compiler-builtins module test on MSVC for now by Douglas Gregor · 12 years ago
  49. 8101c7f Teach tgmath.h to only include <complex.h> if it's available. by Douglas Gregor · 12 years ago
  50. e5c9e09 Alternate fix to the modules failures that doesn't require us to tweak tgmath.h by Douglas Gregor · 12 years ago
  51. 5ad2649 If there's no math.h, then tgmath.h should just be empty by Douglas Gregor · 12 years ago
  52. 3e80d8a Introduce a module map for (some of) the compiler-supplied by Douglas Gregor · 12 years ago
  53. 2ee2ac2 Represent 256-bit unaligned loads natively and remove the builtins. Similar change was made for 128-bit versions a while back. by Craig Topper · 12 years ago
  54. 1ea742b On Darwin, use the system's <unwind.h> whenever it is by Douglas Gregor · 12 years ago
  55. 092acb0 Fix a typo: _MM_FLUSH_ZERO_OFF has the wrong value. rdar://10716672 by Bob Wilson · 13 years ago
  56. f5f18bf Extend unwind.h with the ARM unwinder interface. by Evgeniy Stepanov · 13 years ago
  57. f84d560 Don't depend on undefined macros being 0, there are options for the by Joerg Sonnenberger · 13 years ago
  58. 5c76db3 clang/lib/Headers/CMakeLists.txt: Unbreak cmake build. by NAKAMURA Takumi · 13 years ago
  59. 7feb321 Add FMA4 intrinsics. by Craig Topper · 13 years ago
  60. f9322a6 Remove an accidental change from r147370. Would only break if the new fma4 flag was used. by Craig Topper · 13 years ago
  61. 6a511e1 Add FMA4 feature flag. Intrinsics coming soon. Also make sse4a feature flag imply sse3. Matches gcc behavior. by Craig Topper · 13 years ago
  62. 0945f20 Unbreak cmake build after r147340. by Richard Smith · 13 years ago
  63. e14e08b Add popcnt feature flag to match gcc. This flag is implied when sse42 is enabled, but can be disabled separately. Move popcnt intrinsics to popcntintrin.h to match gcc. by Craig Topper · 13 years ago
  64. b5409c5 clang/lib/Headers/CMakeLists.txt: Unbreak cmake build to add bmi2intrin.h since r147275. by NAKAMURA Takumi · 13 years ago
  65. f58f364 Add BMI2 intrinsics. by Craig Topper · 13 years ago
  66. 6ab9f02 lib/Headers/CMakeLists.txt: Fix cmake build since r147263, for two missing headers. by NAKAMURA Takumi · 13 years ago
  67. 0b269c1 Add the rest of the BMI intrinsics. by Craig Topper · 13 years ago
  68. 5c75208 Add intrinsics for lzcnt and tzcnt instructions. by Craig Topper · 13 years ago
  69. 31ceea0 Add BMI, BMI2, and LZCNT feature flags to enable adding intrinsics. by Craig Topper · 13 years ago
  70. 5cbd751 Add last of the AVX2 intrinsics except for gather. by Craig Topper · 13 years ago
  71. 34a1da4 Add AVX2 permute intrinsics. Also add parentheses on some macro arguments in other intrinsic headers. by Craig Topper · 13 years ago
  72. ee9b41d Add AVX2 intrinsics for FP vbroadcast, vbroadcasti128, and vpblendd. by Craig Topper · 13 years ago
  73. 7f16caa Intrinsics for AVX2 unpack instructions. by Craig Topper · 13 years ago
  74. cbe627b More AVX2 intrinsics for shift, psign, some shuffles, and psadbw. by Craig Topper · 13 years ago
  75. 28a324a Add AVX2 multiply intrinsics. by Craig Topper · 13 years ago
  76. 231f793 Add AVX2 intrinsics for max, min, sign extend, and zero extend. by Craig Topper · 13 years ago
  77. 4a4f25a Add a few more AVX2 intrinsics and fix the type strings on a couple SSE intrinsics. by Craig Topper · 13 years ago
  78. 318e460 Add AVX2 horizontal add/sub intrinsics. by Craig Topper · 13 years ago
  79. 4c07c5d Add AVX2 intrinsics for pavg, pblend, and pcmp instructions. Also remove unneeded builtins for SSE pcmp. Change SSE pcmpeqq and pcmpgtq to not use builtins and just use vector == and >. by Craig Topper · 13 years ago
  80. 735ceaa Add AVX2 intrinsics for and, andn, or, and xor. by Craig Topper · 13 years ago
  81. 9c2ffd8 More AVX2 intrinsic support including saturating add/sub and palignr. by Craig Topper · 13 years ago
  82. 925be54 Begin adding AVX2 intrinsics. Necessitated increasing the number of bits used to store builtinID when serializing identifier table. by Craig Topper · 13 years ago
  83. d7dd775 Fix _mm_permute_ps and _mm256_permute_ps AVX intrinsics to use "I" (ICE) by Chad Rosier · 13 years ago
  84. c17f88e Revert r146797, which was a partial revert of r146791; It was correct in the by Chad Rosier · 13 years ago
  85. 1e4faf5 Fix _mm256_extractf128_* AVX intrinsics to use "I" (ICE) markings. Fix by Chad Rosier · 13 years ago
  86. 1978087 Partial revert of r146791; vpermilps/vpermilpd instructions accepts ymm/mem/imm8. by Chad Rosier · 13 years ago
  87. b8786c4 Fix _mm256_round_pd, _mm256_round_ps, _mm_permute_pd and _mm256_permute_pd AVX by Chad Rosier · 13 years ago
  88. b95ddf1 Fix vinsertf128_* AVX intrinsics to use "I" (ICE) markings. Fix avxintrin.h to by Chad Rosier · 13 years ago
  89. c5cda11 Fix vperm2f128_* AVX intrinsics to use "I" (ICE) markings. Fix avxintrin.h to by Chad Rosier · 13 years ago
  90. 0d57ca1 Fix obvious error in _mm_test_all_zeros. PR11565. Patch by Mathias Gaunard! by Bob Wilson · 13 years ago
  91. 4b45c11 Fix a blatant typo or cut/paste-o reported by users of this header. by Chandler Carruth · 13 years ago
  92. 9b7568d Use default visibility in the the symbols declared in unwind.h. This matches by Rafael Espindola · 13 years ago
  93. d85c1e9 Add a minimal unwind.h that knows how to forward to the system one in systems by Rafael Espindola · 13 years ago
  94. dd023bc Headers: wmmintrin.h only needs xmmintrin.h. by Daniel Dunbar · 13 years ago
  95. 82e11cd Install cpuid.h when building with cmake too. by Rafael Espindola · 13 years ago
  96. 6d387ae Fix comment. by Rafael Espindola · 13 years ago
  97. 1376ba9 Error on non x86 architectures. by Rafael Espindola · 13 years ago
  98. 7f16d70 Fix file name in comments. by Rafael Espindola · 13 years ago
  99. b816276 Add the minimum implementation of cpuid.h. This works on "modern" intel cpus by Rafael Espindola · 13 years ago
  100. 3472089 Fix some additional x86 intrinsics to use "I" (ICE) markings. Fix *mmintrin.h to take them into account. by Eli Friedman · 13 years ago