Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
4f3ad911
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
1 年多 前同步成功
通知
0
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看板
提交
4f3ad911
编写于
8月 04, 2009
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[HB] More debugging output
上级
8cd6fa28
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
40 addition
and
5 deletion
+40
-5
src/hb-open-type-private.hh
src/hb-open-type-private.hh
+40
-5
未找到文件。
src/hb-open-type-private.hh
浏览文件 @
4f3ad911
...
...
@@ -237,21 +237,45 @@ _hb_sanitize_init (hb_sanitize_context_t *context,
context
->
start
=
hb_blob_lock
(
blob
);
context
->
end
=
context
->
start
+
hb_blob_get_length
(
blob
);
context
->
edit_count
=
0
;
#if HB_DEBUG
printf
(
"sanitize %p init [%p..%p] (%u bytes)
\n
"
,
context
->
blob
,
context
->
start
,
context
->
end
,
context
->
start
-
context
->
end
);
#endif
}
static
HB_GNUC_UNUSED
void
_hb_sanitize_fini
(
hb_sanitize_context_t
*
context
,
bool
unlock
)
{
#if HB_DEBUG
printf
(
"sanitize %p fini [%p..%p] %u edit requests
\n
"
,
context
->
blob
,
context
->
start
,
context
->
end
,
context
->
edit_count
);
#endif
if
(
unlock
)
hb_blob_unlock
(
context
->
blob
);
}
static
HB_GNUC_UNUSED
bool
_hb_sanitize_edit
(
hb_sanitize_context_t
*
context
)
static
HB_GNUC_UNUSED
inline
bool
_hb_sanitize_edit
(
hb_sanitize_context_t
*
context
,
const
char
*
base
HB_GNUC_UNUSED
,
unsigned
int
len
HB_GNUC_UNUSED
)
{
bool
perm
=
hb_blob_try_writeable_inplace
(
context
->
blob
);
context
->
edit_count
++
;
return
hb_blob_try_writeable_inplace
(
context
->
blob
);
#if HB_DEBUG
printf
(
"sanitize %p edit %u requested for [%p..%p] (%d bytes) in [%p..%p] -> %s
\n
"
,
context
->
blob
,
context
->
edit_count
,
base
,
base
+
len
,
len
,
context
->
start
,
context
->
end
,
perm
?
"granted"
:
"rejected"
);
#endif
return
perm
;
}
#define SANITIZE_ARG_DEF \
...
...
@@ -277,7 +301,7 @@ _hb_sanitize_edit (hb_sanitize_context_t *context)
#define SANITIZE_MEM(B,L) HB_LIKELY (context->start <= CONST_CHARP(B) && CONST_CHARP(B) + (L) <= context->end)
/* XXX overflow */
#define NEUTER(Var, Val) (SANITIZE_OBJ (Var) && _hb_sanitize_edit (context) && ((Var) = (Val), true))
#define NEUTER(Var, Val) (SANITIZE_OBJ (Var) && _hb_sanitize_edit (context
, CONST_CHARP(&(Var)), sizeof (Var)
) && ((Var) = (Val), true))
/* Template to sanitize an object. */
...
...
@@ -291,6 +315,10 @@ struct Sanitizer
/* XXX is_sane() stuff */
retry:
#if HB_DEBUG
printf
(
"Sanitizer %p start %s
\n
"
,
blob
,
__PRETTY_FUNCTION__
);
#endif
_hb_sanitize_init
(
&
context
,
blob
);
Type
*
t
=
&
CAST
(
Type
,
*
DECONST_CHARP
(
context
.
start
),
0
);
...
...
@@ -307,13 +335,20 @@ struct Sanitizer
}
_hb_sanitize_fini
(
&
context
,
true
);
}
else
{
unsigned
int
edit_count
=
context
.
edit_count
;
_hb_sanitize_fini
(
&
context
,
true
);
if
(
context
.
edit_count
&&
!
hb_blob_is_writeable
(
blob
)
&&
hb_blob_try_writeable
(
blob
))
{
if
(
edit_count
&&
!
hb_blob_is_writeable
(
blob
)
&&
hb_blob_try_writeable
(
blob
))
{
/* ok, we made it writeable by relocating. try again */
#if HB_DEBUG
printf
(
"Sanitizer %p retry %s
\n
"
,
blob
,
__PRETTY_FUNCTION__
);
#endif
goto
retry
;
}
}
#if HB_DEBUG
printf
(
"Sanitizer %p %s %s
\n
"
,
blob
,
sane
?
"passed"
:
"failed"
,
__PRETTY_FUNCTION__
);
#endif
if
(
sane
)
return
blob
;
else
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录