summaryrefslogtreecommitdiff
path: root/gcc/coretypes.h
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2016-08-10 15:11:42 +0200
committerMartin Liska <marxin@gcc.gnu.org>2016-08-10 13:11:42 +0000
commit22063dbc90d0eb8a7cc7939e0941899f90b403db (patch)
treebca16f60942cfafd651fca3cbf08a464365e76b9 /gcc/coretypes.h
parent5a39e998c8a89b26a74b9fb0b5bc17fa8b55d274 (diff)
Cherry-pick fprofile-generate-atomic from google/gcc-4_9
Cherry picked (and modified) from google-4_7 branch 2012-12-26 Rong Xu <xur@google.com> * common.opt (fprofile-update): Add new flag. * coretypes.h: Define enum profile_update. * doc/invoke.texi: Document -fprofile-update. * gcov-io.h: Declare GCOV_TYPE_ATOMIC_FETCH_ADD and GCOV_TYPE_ATOMIC_FETCH_ADD_FN. * tree-profile.c (gimple_init_edge_profiler): Generate also atomic profiler update. (gimple_gen_edge_profiler): Likewise. * g++.dg/gcov/gcov-threads-1.C: New test. From-SVN: r239323
Diffstat (limited to 'gcc/coretypes.h')
-rw-r--r--gcc/coretypes.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/coretypes.h b/gcc/coretypes.h
index b3a91a6d5c5..fe1e984311c 100644
--- a/gcc/coretypes.h
+++ b/gcc/coretypes.h
@@ -174,6 +174,12 @@ enum offload_abi {
OFFLOAD_ABI_ILP32
};
+/* Types of profile update methods. */
+enum profile_update {
+ PROFILE_UPDATE_SINGLE,
+ PROFILE_UPDATE_ATOMIC
+};
+
/* Types of unwind/exception handling info that can be generated. */
enum unwind_info_type