diff options
author | Richard Henderson <rth@redhat.com> | 2005-05-19 19:38:56 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2005-05-19 19:38:56 -0700 |
commit | b686c48cd835838dad36de39d3e297e8d236c338 (patch) | |
tree | 752fb067b665acf9c4d281f624aeb5714431f180 /gcc/config/alpha/alpha-protos.h | |
parent | ce88799c37e930e0b5e760119ea73237c43b5f61 (diff) | |
download | gcc-b686c48cd835838dad36de39d3e297e8d236c338.zip gcc-b686c48cd835838dad36de39d3e297e8d236c338.tar.gz gcc-b686c48cd835838dad36de39d3e297e8d236c338.tar.bz2 |
alpha.c (emit_unlikely_jump, [...]): Split out from ...
* config/alpha/alpha.c (emit_unlikely_jump, emit_load_locked,
emit_store_conditional): Split out from ...
(alpha_split_atomic_op): ... here.
(alpha_split_compare_and_swap): New; extract from .md file.
(alpha_split_lock_test_and_set): Likewise.
* config/alpha/alpha-protos.h: Update.
* config/alpha/sync.md (sync_compare_and_swap<I48MODE>): Move
split code into alpha.c.
(sync_lock_test_and_set<I48MODE>): Likewise.
From-SVN: r100005
Diffstat (limited to 'gcc/config/alpha/alpha-protos.h')
-rw-r--r-- | gcc/config/alpha/alpha-protos.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/alpha/alpha-protos.h b/gcc/config/alpha/alpha-protos.h index dc2b027..ee14006 100644 --- a/gcc/config/alpha/alpha-protos.h +++ b/gcc/config/alpha/alpha-protos.h @@ -102,6 +102,8 @@ extern int alpha_split_conditional_move (enum rtx_code, rtx, rtx, rtx, rtx); extern void alpha_emit_xfloating_arith (enum rtx_code, rtx[]); extern void alpha_emit_xfloating_cvt (enum rtx_code, rtx[]); extern void alpha_split_atomic_op (enum rtx_code, rtx, rtx, rtx, rtx, rtx); +extern void alpha_split_compare_and_swap (rtx, rtx, rtx, rtx, rtx); +extern void alpha_split_lock_test_and_set (rtx, rtx, rtx, rtx); #endif extern rtx alpha_need_linkage (const char *, int); |