Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
b995b501
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
接近 2 年 前同步成功
通知
1
Star
18
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Harfbuzz
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b995b501
编写于
5月 22, 2018
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Try enabling vectorization smartly
We'll see if this sticks to the bots.
上级
dd22c29f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
17 addition
and
15 deletion
+17
-15
src/hb-private.hh
src/hb-private.hh
+17
-8
src/hb-set-private.hh
src/hb-set-private.hh
+0
-7
未找到文件。
src/hb-private.hh
浏览文件 @
b995b501
...
@@ -978,6 +978,14 @@ struct HbOpXor
...
@@ -978,6 +978,14 @@ struct HbOpXor
template
<
typename
T
>
static
void
process
(
T
&
o
,
const
T
&
a
,
const
T
&
b
)
{
o
=
a
^
b
;
}
template
<
typename
T
>
static
void
process
(
T
&
o
,
const
T
&
a
,
const
T
&
b
)
{
o
=
a
^
b
;
}
};
};
/* Compiler-assisted vectorization. */
/* The `vector_size' attribute was introduced in gcc 3.1. */
#if defined( __GNUC__ ) && ( __GNUC__ >= 4 )
#define HAVE_VECTOR_SIZE 1
#endif
/* Type behaving similar to vectorized vars defined using __attribute__((vector_size(...))). */
/* Type behaving similar to vectorized vars defined using __attribute__((vector_size(...))). */
template
<
typename
elt_t
,
unsigned
int
byte_size
>
template
<
typename
elt_t
,
unsigned
int
byte_size
>
struct
hb_vector_size_t
struct
hb_vector_size_t
...
@@ -989,8 +997,11 @@ struct hb_vector_size_t
...
@@ -989,8 +997,11 @@ struct hb_vector_size_t
inline
hb_vector_size_t
process
(
const
hb_vector_size_t
&
o
)
const
inline
hb_vector_size_t
process
(
const
hb_vector_size_t
&
o
)
const
{
{
hb_vector_size_t
r
;
hb_vector_size_t
r
;
for
(
unsigned
int
i
=
0
;
i
<
ARRAY_LENGTH
(
v
);
i
++
)
if
(
HAVE_VECTOR_SIZE
+
0
)
Op
::
process
(
r
.
v
[
i
],
v
[
i
],
o
.
v
[
i
]);
Op
::
process
(
r
.
vec
,
vec
,
o
.
vec
);
else
for
(
unsigned
int
i
=
0
;
i
<
ARRAY_LENGTH
(
v
);
i
++
)
Op
::
process
(
r
.
v
[
i
],
v
[
i
],
o
.
v
[
i
]);
return
r
;
return
r
;
}
}
inline
hb_vector_size_t
operator
|
(
const
hb_vector_size_t
&
o
)
const
inline
hb_vector_size_t
operator
|
(
const
hb_vector_size_t
&
o
)
const
...
@@ -1009,14 +1020,12 @@ struct hb_vector_size_t
...
@@ -1009,14 +1020,12 @@ struct hb_vector_size_t
private:
private:
static_assert
(
byte_size
/
sizeof
(
elt_t
)
*
sizeof
(
elt_t
)
==
byte_size
,
""
);
static_assert
(
byte_size
/
sizeof
(
elt_t
)
*
sizeof
(
elt_t
)
==
byte_size
,
""
);
elt_t
v
[
byte_size
/
sizeof
(
elt_t
)];
union
{
elt_t
v
[
byte_size
/
sizeof
(
elt_t
)];
elt_t
vec
__attribute__
((
vector_size
(
byte_size
)));
/* Only usable if HAVE_VECTOR_SIZE */
};
};
};
/* The `vector_size' attribute was introduced in gcc 3.1. */
#if defined( __GNUC__ ) && ( __GNUC__ >= 4 )
#define HAVE_VECTOR_SIZE 1
#endif
/* Global runtime options. */
/* Global runtime options. */
...
...
src/hb-set-private.hh
浏览文件 @
b995b501
...
@@ -164,14 +164,7 @@ struct hb_set_t
...
@@ -164,14 +164,7 @@ struct hb_set_t
static
inline
unsigned
int
elt_get_min
(
const
elt_t
&
elt
)
{
return
_hb_ctz
(
elt
);
}
static
inline
unsigned
int
elt_get_min
(
const
elt_t
&
elt
)
{
return
_hb_ctz
(
elt
);
}
static
inline
unsigned
int
elt_get_max
(
const
elt_t
&
elt
)
{
return
_hb_bit_storage
(
elt
)
-
1
;
}
static
inline
unsigned
int
elt_get_max
(
const
elt_t
&
elt
)
{
return
_hb_bit_storage
(
elt
)
-
1
;
}
#if 0 && HAVE_VECTOR_SIZE
/* The vectorized version does not work with clang as non-const
* elt() errs "non-const reference cannot bind to vector element". */
typedef elt_t vector_t __attribute__((vector_size (PAGE_BITS / 8)));
#else
typedef
hb_vector_size_t
<
elt_t
,
PAGE_BITS
/
8
>
vector_t
;
typedef
hb_vector_size_t
<
elt_t
,
PAGE_BITS
/
8
>
vector_t
;
#endif
vector_t
v
;
vector_t
v
;
static
const
unsigned
int
ELT_BITS
=
sizeof
(
elt_t
)
*
8
;
static
const
unsigned
int
ELT_BITS
=
sizeof
(
elt_t
)
*
8
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录