Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
ec3ba4b9
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
ec3ba4b9
编写于
5月 17, 2012
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Move atomic ops into their own header
上级
de087839
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
82 addition
and
52 deletion
+82
-52
src/Makefile.am
src/Makefile.am
+1
-0
src/hb-atomic-private.hh
src/hb-atomic-private.hh
+78
-0
src/hb-mutex-private.hh
src/hb-mutex-private.hh
+0
-1
src/hb-object-private.hh
src/hb-object-private.hh
+2
-50
src/hb-warning.cc
src/hb-warning.cc
+1
-1
未找到文件。
src/Makefile.am
浏览文件 @
ec3ba4b9
...
...
@@ -15,6 +15,7 @@ lib_LTLIBRARIES = libharfbuzz.la
HBCFLAGS
=
HBLIBS
=
HBSOURCES
=
\
hb-atomic-private.hh
\
hb-blob.cc
\
hb-buffer-private.hh
\
hb-buffer.cc
\
...
...
src/hb-atomic-private.hh
0 → 100644
浏览文件 @
ec3ba4b9
/*
* Copyright © 2007 Chris Wilson
* Copyright © 2009,2010 Red Hat, Inc.
* Copyright © 2011 Google, Inc.
*
* This is part of HarfBuzz, a text shaping library.
*
* Permission is hereby granted, without written agreement and without
* license or royalty fees, to use, copy, modify, and distribute this
* software and its documentation for any purpose, provided that the
* above copyright notice and the following two paragraphs appear in
* all copies of this software.
*
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
*
* Contributor(s):
* Chris Wilson <chris@chris-wilson.co.uk>
* Red Hat Author(s): Behdad Esfahbod
* Google Author(s): Behdad Esfahbod
*/
#ifndef HB_ATOMIC_PRIVATE_HH
#define HB_ATOMIC_PRIVATE_HH
#include "hb-private.hh"
/* atomic_int */
/* We need external help for these */
#if !defined(HB_NO_MT) && defined(HAVE_GLIB)
#include <glib.h>
typedef
volatile
int
hb_atomic_int_t
;
#if GLIB_CHECK_VERSION(2,29,5)
#define hb_atomic_int_add(AI, V) g_atomic_int_add (&(AI), V)
#else
#define hb_atomic_int_add(AI, V) g_atomic_int_exchange_and_add (&(AI), V)
#endif
#define hb_atomic_int_get(AI) g_atomic_int_get (&(AI))
#elif !defined(HB_NO_MT) && defined(_MSC_VER) && _MSC_VER >= 1600
#include <intrin.h>
typedef
long
hb_atomic_int_t
;
#define hb_atomic_int_add(AI, V) _InterlockedExchangeAdd (&(AI), V)
#define hb_atomic_int_get(AI) (_ReadBarrier (), (AI))
#elif !defined(HB_NO_MT) && defined(__APPLE__)
#include <libkern/OSAtomic.h>
typedef
int32_t
hb_atomic_int_t
;
#define hb_atomic_int_add(AI, V) (OSAtomicAdd32Barrier((V), &(AI)), (AI) - (V))
#define hb_atomic_int_get(AI) OSAtomicAdd32Barrier(0, &(AI))
#else
#define HB_ATOMIC_INT_NIL 1
typedef
volatile
int
hb_atomic_int_t
;
#define hb_atomic_int_add(AI, V) ((AI) += (V), (AI) - (V))
#define hb_atomic_int_get(AI) (AI)
#endif
#endif
/* HB_ATOMIC_PRIVATE_HH */
src/hb-mutex-private.hh
浏览文件 @
ec3ba4b9
...
...
@@ -35,7 +35,6 @@
#include "hb-private.hh"
/* mutex */
/* We need external help for these */
...
...
src/hb-object-private.hh
浏览文件 @
ec3ba4b9
...
...
@@ -34,10 +34,10 @@
#include "hb-private.hh"
#include "hb-atomic-private.hh"
#include "hb-mutex-private.hh"
/* Debug */
#ifndef HB_DEBUG_OBJECT
...
...
@@ -45,49 +45,6 @@
#endif
/* atomic_int */
/* We need external help for these */
#if !defined(HB_NO_MT) && defined(HAVE_GLIB)
#include <glib.h>
typedef
volatile
int
hb_atomic_int_t
;
#if GLIB_CHECK_VERSION(2,29,5)
#define hb_atomic_int_add(AI, V) g_atomic_int_add (&(AI), V)
#else
#define hb_atomic_int_add(AI, V) g_atomic_int_exchange_and_add (&(AI), V)
#endif
#define hb_atomic_int_get(AI) g_atomic_int_get (&(AI))
#elif !defined(HB_NO_MT) && defined(_MSC_VER) && _MSC_VER >= 1600
#include <intrin.h>
typedef
long
hb_atomic_int_t
;
#define hb_atomic_int_add(AI, V) _InterlockedExchangeAdd (&(AI), V)
#define hb_atomic_int_get(AI) (_ReadBarrier (), (AI))
#elif !defined(HB_NO_MT) && defined(__APPLE__)
#include <libkern/OSAtomic.h>
typedef
int32_t
hb_atomic_int_t
;
#define hb_atomic_int_add(AI, V) (OSAtomicAdd32Barrier((V), &(AI)), (AI) - (V))
#define hb_atomic_int_get(AI) OSAtomicAdd32Barrier(0, &(AI))
#else
#define HB_ATOMIC_INT_NIL 1
typedef
volatile
int
hb_atomic_int_t
;
#define hb_atomic_int_add(AI, V) ((AI) += (V), (AI) - (V))
#define hb_atomic_int_get(AI) (AI)
#endif
/* reference_count */
typedef
struct
{
...
...
@@ -198,7 +155,7 @@ struct _hb_object_header_t {
inline
void
trace
(
const
char
*
function
)
const
{
if
(
unlikely
(
!
this
))
return
;
/* XXX We cannot use DEBUG_MSG_FUNC here since that one currecntly only
* prints the class name and thro
ugh
s away the template info. */
* prints the class name and thro
w
s away the template info. */
DEBUG_MSG
(
OBJECT
,
(
void
*
)
this
,
"%s refcount=%d"
,
function
,
...
...
@@ -208,8 +165,6 @@ struct _hb_object_header_t {
};
/* object */
template
<
typename
Type
>
...
...
@@ -260,7 +215,4 @@ static inline void *hb_object_get_user_data (Type *obj,
}
#endif
/* HB_OBJECT_PRIVATE_HH */
src/hb-warning.cc
浏览文件 @
ec3ba4b9
...
...
@@ -24,8 +24,8 @@
* Google Author(s): Behdad Esfahbod
*/
#include "hb-atomic-private.hh"
#include "hb-mutex-private.hh"
#include "hb-object-private.hh"
#if !defined(HB_NO_MT) && defined(HB_ATOMIC_INT_NIL)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录