aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/gcc/coverage.h
diff options
context:
space:
mode:
authorJing Yu <jingyu@google.com>2011-01-30 22:18:29 -0800
committerJing Yu <jingyu@google.com>2011-01-30 22:18:29 -0800
commit4a66e756636cb8364582ea503abd10d76f5b4aa3 (patch)
tree9660204ec085888a0601a6460c967b204a63d5f3 /gcc-4.4.3/gcc/coverage.h
parentb6be42e837844cce5283f42fcfac31e6d66a277d (diff)
downloadtoolchain_gcc-4a66e756636cb8364582ea503abd10d76f5b4aa3.tar.gz
toolchain_gcc-4a66e756636cb8364582ea503abd10d76f5b4aa3.tar.bz2
toolchain_gcc-4a66e756636cb8364582ea503abd10d76f5b4aa3.zip
Upgrade gcc-4.4.3 for Android toolchain.
- Backport upstream patches to support arm hardfp. - Backport gcc-4.5 patches to support -march=atom. Now it is able to build atom toolchain with glibc from this branch - Develop a bunch of optimizations - Fix a few arm dejagnu failures To-do list: - Support Android/atom - Fix ia32 bootstrap failure Change-Id: I5e10dcd21620d4d8ca984d1d1707a76067e61691
Diffstat (limited to 'gcc-4.4.3/gcc/coverage.h')
-rw-r--r--gcc-4.4.3/gcc/coverage.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc-4.4.3/gcc/coverage.h b/gcc-4.4.3/gcc/coverage.h
index 2562a1fa4..13abcb65e 100644
--- a/gcc-4.4.3/gcc/coverage.h
+++ b/gcc-4.4.3/gcc/coverage.h
@@ -58,6 +58,7 @@ extern gcov_type *get_coverage_counts_no_warn (struct function *,
extern struct cgraph_node * find_func_by_global_id (unsigned HOST_WIDE_INT gid);
+extern struct cgraph_node * find_func_by_name (const char *name);
/* All the coverage counters are supposed to be allocated by the time
coverage_end_function is called. However, direct-call counters are
allocated after coverage_end_function has been called. This function
@@ -72,8 +73,18 @@ extern bool coverage_function_present (unsigned fn_ident);
extern tree get_gcov_type (void);
extern tree get_gcov_unsigned_t (void);
+extern tree get_gcov_float_t (void);
/* Mark this module as containing asm statements. */
extern void coverage_has_asm_stmt (void);
+/* Get the da file name, given base file name. */
+extern char * get_da_file_name (const char *base_file_name);
+
+/* Check if the specified options are valid for pmu profilig. */
+extern int check_pmu_profile_options (const char *options);
+
+/* Defined in tree-profile.c. */
+extern void tree_init_instrumentation_sampling (void);
+
#endif