blob: 004666115ea9d05f515254f1ac05e83c3241f7d6 [file] [log] [blame]
reed@android.com8a1c16f2008-12-17 15:59:43 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00003 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00004 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00006 */
7
epoger@google.comec3ed6a2011-07-28 14:26:00 +00008
reed@android.com8a1c16f2008-12-17 15:59:43 +00009#ifndef SkFDot6_DEFINED
10#define SkFDot6_DEFINED
11
benjaminwagner6c71e0a2016-04-07 08:49:31 -070012#include "SkFixed.h"
bungeman@google.com8ff8a192012-09-25 20:38:28 +000013#include "SkScalar.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000014#include "SkMath.h"
15
16typedef int32_t SkFDot6;
17
george2f265282014-08-29 08:47:55 -070018/* This uses the magic number approach suggested here:
19 * http://stereopsis.com/sree/fpu2006.html and used in
20 * _cairo_fixed_from_double. It does banker's rounding
21 * (i.e. round to nearest even)
22 */
23inline SkFDot6 SkScalarRoundToFDot6(SkScalar x, int shift = 0)
24{
25 union {
26 double fDouble;
27 int32_t fBits[2];
28 } tmp;
29 int fractionalBits = 6 + shift;
30 double magic = (1LL << (52 - (fractionalBits))) * 1.5;
31
32 tmp.fDouble = SkScalarToDouble(x) + magic;
33#ifdef SK_CPU_BENDIAN
34 return tmp.fBits[1];
35#else
36 return tmp.fBits[0];
37#endif
38}
39
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000040#define SK_FDot6One (64)
reed@android.com8a1c16f2008-12-17 15:59:43 +000041#define SK_FDot6Half (32)
42
43#ifdef SK_DEBUG
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000044 inline SkFDot6 SkIntToFDot6(S16CPU x) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000045 SkASSERT(SkToS16(x) == x);
46 return x << 6;
47 }
48#else
49 #define SkIntToFDot6(x) ((x) << 6)
50#endif
51
52#define SkFDot6Floor(x) ((x) >> 6)
53#define SkFDot6Ceil(x) (((x) + 63) >> 6)
54#define SkFDot6Round(x) (((x) + 32) >> 6)
55
56#define SkFixedToFDot6(x) ((x) >> 10)
57
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000058inline SkFixed SkFDot6ToFixed(SkFDot6 x) {
caryclark3127c992015-12-09 12:02:30 -080059 SkASSERT((SkLeftShift(x, 10) >> 10) == x);
reed@android.com8a1c16f2008-12-17 15:59:43 +000060
caryclark3127c992015-12-09 12:02:30 -080061 return SkLeftShift(x, 10);
reed@android.com8a1c16f2008-12-17 15:59:43 +000062}
63
reed@google.com8f4d2302013-12-17 16:44:46 +000064#define SkScalarToFDot6(x) (SkFDot6)((x) * 64)
65#define SkFDot6ToScalar(x) ((SkScalar)(x) * 0.015625f)
benjaminwagner6b3eacb2016-03-24 19:07:58 -070066#define SkFDot6ToFloat SkFDot6ToScalar
reed@android.com8a1c16f2008-12-17 15:59:43 +000067
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000068inline SkFixed SkFDot6Div(SkFDot6 a, SkFDot6 b) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000069 SkASSERT(b != 0);
70
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000071 if (a == (int16_t)a) {
caryclark3127c992015-12-09 12:02:30 -080072 return SkLeftShift(a, 16) / b;
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000073 } else {
reed@android.com8a1c16f2008-12-17 15:59:43 +000074 return SkFixedDiv(a, b);
mike@reedtribe.orgbcc1d332011-04-09 19:16:54 +000075 }
reed@android.com8a1c16f2008-12-17 15:59:43 +000076}
77
Yuqian Lice1d2932016-11-18 10:18:15 -050078#include "SkFDot6Constants.h"
79
80class QuickFDot6Inverse {
Yuqian Lice1d2932016-11-18 10:18:15 -050081public:
82 inline static SkFixed Lookup(SkFDot6 x) {
83 SkASSERT(SkAbs32(x) < kInverseTableSize);
Bruce Dawsonb07a01e2017-01-22 12:43:53 -080084 return gFDot6INVERSE[kInverseTableSize + x];
Yuqian Lice1d2932016-11-18 10:18:15 -050085 }
86};
87
88static inline SkFixed QuickSkFDot6Div(SkFDot6 a, SkFDot6 b) {
89 const int kMinBits = 3; // abs(b) should be at least (1 << kMinBits) for quick division
90 const int kMaxBits = 31; // Number of bits available in signed int
91 // Given abs(b) <= (1 << kMinBits), the inverse of abs(b) is at most 1 << (22 - kMinBits) in
92 // SkFixed format. Hence abs(a) should be less than kMaxAbsA
93 const int kMaxAbsA = 1 << (kMaxBits - (22 - kMinBits));
94 SkFDot6 abs_a = SkAbs32(a);
95 SkFDot6 abs_b = SkAbs32(b);
96 if (abs_b >= (1 << kMinBits) && abs_b < kInverseTableSize && abs_a < kMaxAbsA) {
97 SkASSERT((int64_t)a * QuickFDot6Inverse::Lookup(b) <= SK_MaxS32
98 && (int64_t)a * QuickFDot6Inverse::Lookup(b) >= SK_MinS32);
99 SkFixed ourAnswer = (a * QuickFDot6Inverse::Lookup(b)) >> 6;
100 #ifdef SK_DEBUG
101 SkFixed directAnswer = SkFDot6Div(a, b);
102 SkASSERT(
103 (directAnswer == 0 && ourAnswer == 0) ||
104 SkFixedDiv(SkAbs32(directAnswer - ourAnswer), SkAbs32(directAnswer)) <= 1 << 10
105 );
106 #endif
107 return ourAnswer;
108 } else {
109 return SkFDot6Div(a, b);
110 }
111}
112
reed@android.com8a1c16f2008-12-17 15:59:43 +0000113#endif