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

Side by Side Diff: src/core/Sk2x.h

Issue 1020963002: Specialize Sk2d for ARM64 (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Avoid use of vset[q]_lane, instead intializing vectors directly. Created 5 years, 9 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 | « include/core/SkPreConfig.h ('k') | src/core/SkPMFloat.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 2015 Google Inc. 2 * Copyright 2015 Google Inc.
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 Sk2x_DEFINED 8 #ifndef Sk2x_DEFINED
9 #define Sk2x_DEFINED 9 #define Sk2x_DEFINED
10 10
11 #include "SkTypes.h" 11 #include "SkTypes.h"
12 #include "SkNx.h" 12 #include "SkNx.h"
13 13
14 #define SK2X_PREAMBLE 1 14 #define SK2X_PREAMBLE 1
15 #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 && !defined(SKNX_NO_SIMD) 15 #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 && !defined(SKNX_NO_SIMD)
16 #include "../opts/Sk2x_sse.h" 16 #include "../opts/Sk2x_sse.h"
17 #elif defined(__ARM_NEON__) && !defined(SKNX_NO_SIMD) 17 #elif defined(SK_ARM_HAS_NEON) && !defined(SKNX_NO_SIMD)
18 #include "../opts/Sk2x_neon.h" 18 #include "../opts/Sk2x_neon.h"
19 #else 19 #else
20 #include "../opts/Sk2x_none.h" 20 #include "../opts/Sk2x_none.h"
21 #endif 21 #endif
22 #undef SK2X_PREAMBLE 22 #undef SK2X_PREAMBLE
23 23
24 template <typename T> class Sk2x; 24 template <typename T> class Sk2x;
25 typedef Sk2x<float> Sk2f; 25 typedef Sk2x<float> Sk2f;
26 typedef Sk2x<double> Sk2d; 26 typedef Sk2x<double> Sk2d;
27 27
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 Sk2x rsqrt() const; // Approximate 1/this->sqrt(). 64 Sk2x rsqrt() const; // Approximate 1/this->sqrt().
65 Sk2x sqrt() const; // this->multiply(this->rsqrt()) may be faster, but le ss precise. 65 Sk2x sqrt() const; // this->multiply(this->rsqrt()) may be faster, but le ss precise.
66 66
67 static Sk2x Min(const Sk2x&, const Sk2x&); 67 static Sk2x Min(const Sk2x&, const Sk2x&);
68 static Sk2x Max(const Sk2x&, const Sk2x&); 68 static Sk2x Max(const Sk2x&, const Sk2x&);
69 69
70 private: 70 private:
71 #define SK2X_PRIVATE 1 71 #define SK2X_PRIVATE 1
72 #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 && !defined(SKNX_NO_SIMD) 72 #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 && !defined(SKNX_NO_SIMD)
73 #include "../opts/Sk2x_sse.h" 73 #include "../opts/Sk2x_sse.h"
74 #elif defined(__ARM_NEON__) && !defined(SKNX_NO_SIMD) 74 #elif defined(SK_ARM_HAS_NEON) && !defined(SKNX_NO_SIMD)
75 #include "../opts/Sk2x_neon.h" 75 #include "../opts/Sk2x_neon.h"
76 #else 76 #else
77 #include "../opts/Sk2x_none.h" 77 #include "../opts/Sk2x_none.h"
78 #endif 78 #endif
79 #undef SK2X_PRIVATE 79 #undef SK2X_PRIVATE
80 }; 80 };
81 81
82 #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 && !defined(SKNX_NO_SIMD) 82 #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE2 && !defined(SKNX_NO_SIMD)
83 #include "../opts/Sk2x_sse.h" 83 #include "../opts/Sk2x_sse.h"
84 #elif defined(__ARM_NEON__) && !defined(SKNX_NO_SIMD) 84 #elif defined(SK_ARM_HAS_NEON) && !defined(SKNX_NO_SIMD)
85 #include "../opts/Sk2x_neon.h" 85 #include "../opts/Sk2x_neon.h"
86 #else 86 #else
87 #include "../opts/Sk2x_none.h" 87 #include "../opts/Sk2x_none.h"
88 #endif 88 #endif
89 89
90 #endif//Sk2x_DEFINED 90 #endif//Sk2x_DEFINED
OLDNEW
« no previous file with comments | « include/core/SkPreConfig.h ('k') | src/core/SkPMFloat.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698