Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1042)

Side by Side Diff: asan/asan_clang_Darwin/lib/clang/3.1/include/immintrin.h

Issue 9034019: Roll the new ASan binaries for Mac OS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: Created 8 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /*===---- immintrin.h - Intel intrinsics -----------------------------------=== 1 /*===---- immintrin.h - Intel intrinsics -----------------------------------===
2 * 2 *
3 * Permission is hereby granted, free of charge, to any person obtaining a copy 3 * Permission is hereby granted, free of charge, to any person obtaining a copy
4 * of this software and associated documentation files (the "Software"), to deal 4 * of this software and associated documentation files (the "Software"), to deal
5 * in the Software without restriction, including without limitation the rights 5 * in the Software without restriction, including without limitation the rights
6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 6 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 * copies of the Software, and to permit persons to whom the Software is 7 * copies of the Software, and to permit persons to whom the Software is
8 * furnished to do so, subject to the following conditions: 8 * furnished to do so, subject to the following conditions:
9 * 9 *
10 * The above copyright notice and this permission notice shall be included in 10 * The above copyright notice and this permission notice shall be included in
(...skipping 30 matching lines...) Expand all
41 #endif 41 #endif
42 42
43 #ifdef __SSSE3__ 43 #ifdef __SSSE3__
44 #include <tmmintrin.h> 44 #include <tmmintrin.h>
45 #endif 45 #endif
46 46
47 #if defined (__SSE4_2__) || defined (__SSE4_1__) 47 #if defined (__SSE4_2__) || defined (__SSE4_1__)
48 #include <smmintrin.h> 48 #include <smmintrin.h>
49 #endif 49 #endif
50 50
51 #if defined (__AES__) || defined (__PCLMUL__) 51 #if defined (__AES__)
52 #include <wmmintrin.h> 52 #include <wmmintrin.h>
53 #endif 53 #endif
54 54
55 #ifdef __AVX__ 55 #ifdef __AVX__
56 #include <avxintrin.h> 56 #include <avxintrin.h>
57 #endif 57 #endif
58 58
59 #ifdef __AVX2__
60 #include <avx2intrin.h>
61 #endif
62
63 #ifdef __BMI__
64 #include <bmiintrin.h>
65 #endif
66
67 #ifdef __BMI2__
68 #include <bmi2intrin.h>
69 #endif
70
71 #ifdef __LZCNT__
72 #include <lzcntintrin.h>
73 #endif
74
59 #endif /* __IMMINTRIN_H */ 75 #endif /* __IMMINTRIN_H */
OLDNEW
« no previous file with comments | « asan/asan_clang_Darwin/lib/clang/3.1/include/cpuid.h ('k') | asan/asan_clang_Darwin/lib/clang/3.1/include/lzcntintrin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698