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

Side by Side Diff: include/core/SkTypes.h

Issue 2045633002: Move immintrin/arm_neon includes to where they are used. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: check for libc++ Created 4 years, 6 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
« no previous file with comments | « no previous file | include/private/SkFloatingPoint.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2006 The Android Open Source Project 2 * Copyright 2006 The Android Open Source Project
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkTypes_DEFINED 8 #ifndef SkTypes_DEFINED
9 #define SkTypes_DEFINED 9 #define SkTypes_DEFINED
10 10
11 // IWYU pragma: begin_exports 11 // IWYU pragma: begin_exports
12 #include "SkPreConfig.h" 12 #include "SkPreConfig.h"
13 #include "SkUserConfig.h" 13 #include "SkUserConfig.h"
14 #include "SkPostConfig.h" 14 #include "SkPostConfig.h"
15 #include <stddef.h> 15 #include <stddef.h>
16 #include <stdint.h> 16 #include <stdint.h>
17
18 #if defined(SK_ARM_HAS_NEON)
19 #include <arm_neon.h>
20 #elif SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2
21 #include <immintrin.h>
22 #endif
23 // IWYU pragma: end_exports 17 // IWYU pragma: end_exports
24 18
25 #include <string.h> 19 #include <string.h>
26 20
27 /** 21 /**
28 * sk_careful_memcpy() is just like memcpy(), but guards against undefined beha vior. 22 * sk_careful_memcpy() is just like memcpy(), but guards against undefined beha vior.
29 * 23 *
30 * It is undefined behavior to call memcpy() with null dst or src, even if len i s 0. 24 * It is undefined behavior to call memcpy() with null dst or src, even if len i s 0.
31 * If an optimizer is "smart" enough, it can exploit this to do unexpected thing s. 25 * If an optimizer is "smart" enough, it can exploit this to do unexpected thing s.
32 * memcpy(dst, src, 0); 26 * memcpy(dst, src, 0);
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
705 699
706 void* fPtr; 700 void* fPtr;
707 size_t fSize; // can be larger than the requested size (see kReuse) 701 size_t fSize; // can be larger than the requested size (see kReuse)
708 uint32_t fStorage[kSize >> 2]; 702 uint32_t fStorage[kSize >> 2];
709 }; 703 };
710 // Can't guard the constructor because it's a template class. 704 // Can't guard the constructor because it's a template class.
711 705
712 #endif /* C++ */ 706 #endif /* C++ */
713 707
714 #endif 708 #endif
OLDNEW
« no previous file with comments | « no previous file | include/private/SkFloatingPoint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698