1. ab866b4 improve altivec c++ support by adding casts, patch by Anton Yartsev! by Chris Lattner · 14 years ago
  2. dd17394 implement altivec.h and a bunch of support code, patch by Anton Yartsev! by Chris Lattner · 14 years ago
  3. 83e7a78 rename llvm::llvm_report_error -> llvm::report_fatal_error by Chris Lattner · 14 years ago
  4. 6e92883 Fix typo. by Eric Christopher · 14 years ago
  5. 33c9032 First start at wmmintrin.h file with Intel AES-NI instructions. by Eric Christopher · 14 years ago
  6. 82049c0 Fix 80 col violations. by Daniel Dunbar · 14 years ago
  7. 054c276 This is just a simple v4si * v4si, make it so. by Eric Christopher · 14 years ago
  8. 1a37d0a Make the license header in smmintrin.h match the other SSE headers. by Anders Carlsson · 14 years ago
  9. 1bddbcb fix PR6658: inline isn't a keyword in C89 mode, use __inline__ instead. by Chris Lattner · 14 years ago
  10. 67a5936 Add sse4.2 header and builtin support. by Eric Christopher · 14 years ago
  11. ff4417b Add a newline at the end of the file. by Eric Christopher · 14 years ago
  12. 3dab29a For legacy compatibility add a varargs.h header. by Eric Christopher · 14 years ago
  13. 020f1ed Migrate typedefs to the top level of xmmintrin.h and remove the same by Eric Christopher · 14 years ago
  14. 7bd0dfd Add remaining sse4.1 intrinsics and builtins. by Eric Christopher · 14 years ago
  15. 0c2b4f4 Add SSE4 packed integer comparisons and corresponding intrinsics. by Eric Christopher · 14 years ago
  16. ff8aeaa Integer array extraction for sse4.1. by Eric Christopher · 14 years ago
  17. 6fa43e3 Add packed integer array insertion. by Eric Christopher · 14 years ago
  18. 9a2a69f Add insert/extract_ps and related random macros. by Eric Christopher · 14 years ago
  19. 21259ba Add preprocessor guards to the definitions of size_t and wchar_t, and #undef NULL before defining it. by Ted Kremenek · 14 years ago
  20. 82bab0d Place the definition of 'va_list' within a preprocessor guard. This matches the behavior of GCC, and avoids potential conflicts with system headers (e.g., stdio.h). Fixes <rdar://problem/7727145>. by Ted Kremenek · 14 years ago
  21. 3afda60 Add sse4.1 packed min and max intrinsics. by Eric Christopher · 14 years ago
  22. 0356848 Add load hint instruction intrinsic. by Eric Christopher · 14 years ago
  23. c82ac95 Add in support for dword multiply and fp dot product intrinsics. by Eric Christopher · 14 years ago
  24. 9ce2116 Fix _MM_FROUND_NEARBYINT and move rounding intrinsics to macros. by Eric Christopher · 14 years ago
  25. b71f956 First start on smmintrin.h, rounding and blending. by Eric Christopher · 14 years ago
  26. ef5ebf6 add two aliases for SSE functions we already have, fixing PR6316. by Chris Lattner · 14 years ago
  27. 21b91a3 fix PR6187: various load functions in xmmintrin.h were missing 'const'. by Chris Lattner · 15 years ago
  28. 9afb227 fix a bug in the _MM_TRANSPOSE4_PS definition, patch by Brian Sumner from PR6138 by Chris Lattner · 15 years ago
  29. 2c48345 _mm_xor_ps does a xor not a nxor. The other 'xor' builtins look fine, by Chris Lattner · 15 years ago
  30. c3420ff Revert mmx palignr to use an intrinsic, since mmx shuffle patterns are missing. by Nate Begeman · 15 years ago
  31. ce5818a Support x86's PALIGNR instruction without the use of a palignr intrinsic. by Nate Begeman · 15 years ago
  32. f2c8e7d minimal fix for PR5743 by Chris Lattner · 15 years ago
  33. a22848f Pick up MB_LEN_MAX as defined by the system <limits.h>, when it's provided there by Douglas Gregor · 15 years ago
  34. fc07d91 Define SIG_ATOMIC_MIN and SIG_ATOMIC_MAX in terms of __SIG_ATOMIC_WIDTH__. by Ken Dyck · 15 years ago
  35. fdb4324 Avoid unwanted expansion in macros that paste together INT<n>_C(v) and by Ken Dyck · 15 years ago
  36. a2e9284 Avoid unwanted expansion in macros that paste together INT<n>_MIN, INT<n>_MAX, by Ken Dyck · 15 years ago
  37. aface1b Avoid unwanted macro expansion in macros that paste together int<n>_t and by Ken Dyck · 15 years ago
  38. c2bae59 Define WCHAR_MIN and WCHAR_MAX in terms of __WCHAR_WIDTH__ for consistency with by Ken Dyck · 15 years ago
  39. bfec4b0 Parameterize WINT_MIN and WINT_MAX with __WINT_WIDTH__ to support arbitrary by Ken Dyck · 15 years ago
  40. 4b7d945 Construct definition of SIZE_MAX from __SIZE_WIDTH__ to support targets of by Ken Dyck · 15 years ago
  41. 8a3e9d9 Construct the macro body of PTRDIFF_MAX and PTRDIFF_MIN from __PTRDIFF_WIDTH__. by Ken Dyck · 15 years ago
  42. c3ca6ef Construct INTPTR_MIN, INTPTR_MAX, and UINTPTR_MAX from the exact-width limit by Ken Dyck · 15 years ago
  43. 08321b4 Define intptr_t and uintptr_t in terms of their equivalent exact-width types. by Ken Dyck · 15 years ago
  44. 832b710 Define INTMAX_C and UINTMAX_C in terms of the corresponding exact-width by Ken Dyck · 15 years ago
  45. db57ce5 Define INTMAX_MIN, INTMAX_MAX, and UINTMAX_MAX in terms of the limit macros for by Ken Dyck · 15 years ago
  46. 36fac07 Define intmax_t and uintmax_t as the [u]intN_t type corresponding to by Ken Dyck · 15 years ago
  47. b088756 Replace (-INT8_C(128)), which uses an illegally out-of-range argument for by Ken Dyck · 15 years ago
  48. 8163841 Use the INTn_C integer constant macros to generate limit constants with correct by Ken Dyck · 15 years ago
  49. 6ab25f4 Remove unnecessary parens around the bodies of integer constant macros. C99 by Ken Dyck · 15 years ago
  50. eef22ef Parameterize the constant-generating macros in stdint.h with new built-in by Ken Dyck · 15 years ago
  51. dcdd2a0 Generalize stdint.h for non-8-bit-multiple types, patch by Ken Dyck! by Chris Lattner · 15 years ago
  52. 06dcf6b A simple reordering of the definitions in stdint.h and by Chris Lattner · 15 years ago
  53. 92bd8c7 Added __has_include and __has_include_next. by John Thompson · 15 years ago
  54. 25950e8 CMake: Respect LLVM_LIBDIR_SUFFIX for clang-specific headers under by Oscar Fuentes · 15 years ago
  55. 4bf4e30 Make our char vector types not be explicitly signed to match GCC and to fix compilation with C++ and -fno-lax-vector-conversions by Anders Carlsson · 15 years ago
  56. 9436ed5 Fix PR4923. by Anders Carlsson · 15 years ago
  57. f918b8f Collapse more clang version numbers down into fewer places. by Mike Stump · 15 years ago
  58. 1f2c32e Back to 1.1 we go. by Mike Stump · 15 years ago
  59. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  60. 7f7b748 CMake: Improve installation of Clang by Douglas Gregor · 15 years ago
  61. 3a266f2 Switch some functions from using x86 builtins to using vector operations. by Eli Friedman · 15 years ago
  62. 91a425c Make sure install Clang headers when building clang-cc by Douglas Gregor · 15 years ago
  63. ebfc180 Update Clang to include the InitializeAllTargets and by Douglas Gregor · 15 years ago
  64. c7d95dc Following gcc, hide the hack to include the SSE2 intrinsics from by Eli Friedman · 15 years ago
  65. 8fff257 Remove a few more vector builtins. by Eli Friedman · 15 years ago
  66. 3eef3e1 xmmintrin needs to include emmintrin, Darwin system headers seem to depend on it by Daniel Dunbar · 15 years ago
  67. e0ae8bd Now that LLVM CodeGen can handle the generic variations a bit better, by Eli Friedman · 15 years ago
  68. 0602600 CMake: Install Clang's headers into the right place in the build tree, for regression testing by Douglas Gregor · 15 years ago
  69. 098136a Replace more calls to builtins with generic code. by Eli Friedman · 15 years ago
  70. 2e8d8da Fix obvious typo. by Eli Friedman · 15 years ago
  71. 17d2e3a Fix some casts to work without -flax-vector-conversions. by Eli Friedman · 15 years ago
  72. 80c8004 Misc fixes to MMX/SSE intrinsics: a few small bug fixes, and getting rid by Eli Friedman · 15 years ago
  73. db7351a Add aliases for a couple of SSE intrinsics. Patch by Ed Schouten. by Eli Friedman · 15 years ago
  74. 79dcf5f Add 'cmp' SSE builtins and get rid of a bunch of other builtins. by Anders Carlsson · 15 years ago
  75. 6fdca0e Fix for PR3841: follow gcc's example and fall back to the system by Eli Friedman · 15 years ago
  76. 2e828f0 Fix tyop in SSSE3 header (6808876). by Anders Carlsson · 15 years ago
  77. ca93195 glibc plays some weird games with multiple different definitions of by Chris Lattner · 15 years ago
  78. 7add547 fix misspelt attribute. by Chris Lattner · 15 years ago
  79. 2ec926c define __va_copy unconditionally, but va_copy only in c99 or non-ansi mode. by Chris Lattner · 15 years ago
  80. ae8ecdd Fix typo. by Anders Carlsson · 15 years ago
  81. 2fc47b5 add support for the LONG_LONG_MIN/LONG_LONG_MAX/ULONG_LONG_MAX limits.h GNU extensions. by Chris Lattner · 15 years ago
  82. cf117d3 Only intptr_t is protected by __intptr_t_defined. by Daniel Dunbar · 15 years ago
  83. ab775f6 fix inverted conditional, rdar://6633188 by Chris Lattner · 15 years ago
  84. adcf5b3 Put compiler headers in <prefix>/lib/clang/1.0/include (vs by Daniel Dunbar · 15 years ago
  85. ccb8f08 testing (reverted) by Howard Hinnant · 15 years ago
  86. 412705b testing by Howard Hinnant · 15 years ago
  87. 0c36c92 Remove pointless backslash by Douglas Gregor · 15 years ago
  88. c13c012 Add an unavailable __tg_promote function to attract incorrect uses of type-generic macros, rom Howard Hinnant. by Douglas Gregor · 15 years ago
  89. 39aa1ed initial reimplement tgmath.h, written by Howard Hinnant! by Chris Lattner · 15 years ago
  90. d99e31b Spell __always_inline__ correctly. by Daniel Dunbar · 15 years ago
  91. 85b2a47 Add SSSE3 header by Anders Carlsson · 15 years ago
  92. 1cd6711 remove dead macros by Chris Lattner · 15 years ago
  93. e1ce4a9 explicitly cast integers to double. This a) silences any by Chris Lattner · 15 years ago
  94. 05a6c16 asin support. No we don't care about complex int :) by Chris Lattner · 15 years ago
  95. e5b7d64 hand macro expand this to make "candidate" set printing more useful. However, by Chris Lattner · 15 years ago
  96. f265a00 add support for integers to tgmath functions. I apparently need to provide by Chris Lattner · 15 years ago
  97. 5f3d0ae start converting over to attr(overloadable). Unfortunately, this by Chris Lattner · 15 years ago
  98. e308c41 Fix 80col violations. by Mike Stump · 15 years ago
  99. a837a07 Fix more xmmintrin.h typos by Anders Carlsson · 15 years ago
  100. 13f5f6e Fix an error in _mm_loaddup_pd that Eli noticed. by Anders Carlsson · 15 years ago