+2011-05-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
+
+ PR gcov-profile/48845
+ * g++.dg/tree-prof/tree-prof.exp: Check for -fprofile-generate
+ support.
+ * gcc.dg/matrix/matrix.exp: Likewise.
+ * gcc.dg/tree-prof/tree-prof.exp: Likewise.
+ * lib/target-supports-dg.exp (dg-require-profiling): Don't pass
+ line number to check_profiling_available.
+ * lib/target-supports.exp (check_profiling_available): Account for
+ this.
+ Require TLS runtime support with -fprofile-generate.
+ * lib/profopt.exp (profopt-execute): Add TLS options for
+ -fprofile-generate.
+ * gcc.dg/pr47793.c: Add dg-require-profiling "-fprofile-generate".
+
2011-05-26 Jakub Jelinek <jakub@redhat.com>
PR c++/49165
-# Copyright (C) 2001, 2002, 2004, 2005, 2007, 2008
+# Copyright (C) 2001, 2002, 2004, 2005, 2007, 2008, 2011
# Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
load_lib target-supports.exp
# Some targets don't support tree profiling.
-if { ![check_profiling_available ""] } {
+if { ![check_profiling_available "-fprofile-generate"] } {
return
}
-# Copyright (C) 2001, 2002, 2004, 2005, 2007, 2010
+# Copyright (C) 2001, 2002, 2004, 2005, 2007, 2010, 2011
# Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
dg-final
# Some targets don't support tree profiling.
-if { ![check_profiling_available ""] } {
+if { ![check_profiling_available "-fprofile-generate"] } {
return
}
/* Bug pr47793: Allow relative paths in profile-generate. */
/* { dg-do run } */
/* { dg-options "-O -fprofile-generate=./" } */
+/* { dg-require-profiling "-fprofile-generate" } */
/* { dg-final { scan-file pr47793.gcda "."} } */
int
-# Copyright (C) 2001, 2002, 2004, 2005, 2007, 2008
+# Copyright (C) 2001, 2002, 2004, 2005, 2007, 2008, 2011
# Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
load_lib target-supports.exp
# Some targets don't support tree profiling.
-if { ![check_profiling_available ""] } {
+if { ![check_profiling_available "-fprofile-generate"] } {
return
}
-# Copyright (C) 2001, 2004, 2005, 2007, 2008, 2010
+# Copyright (C) 2001, 2004, 2005, 2007, 2008, 2010, 2011
# Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
set extra_options [dg-additional-files-options "" "$src"]
+ # Tree profiling requires TLS runtime support, which may need
+ # additional flags.
+ if { [string first "-fprofile-generate" $profile_option] >= 0 } {
+ set extra_flags [add_options_for_tls $extra_flags]
+ }
+
# Compile for profiling.
set options "$extra_options"
# If this target does not support profiling, skip this test.
proc dg-require-profiling { args } {
- if { ![ check_profiling_available ${args} ] } {
+ if { ![ check_profiling_available [lindex $args 1] ] } {
upvar dg-do-what dg-do-what
set dg-do-what [list [lindex ${dg-do-what} 0] "N" "P"]
}
# These conditions depend on the argument so examine them before
# looking at the cache variable.
+ # Tree profiling requires TLS runtime support.
+ if { $test_what == "-fprofile-generate" } {
+ return [check_effective_target_tls_runtime]
+ }
+
# Support for -p on solaris2 relies on mcrt1.o which comes with the
# vendor compiler. We cannot reliably predict the directory where the
# vendor compiler (and thus mcrt1.o) is installed so we can't
# necessarily find mcrt1.o even if we have it.
- if { [istarget *-*-solaris2*] && [lindex $test_what 1] == "-p" } {
+ if { [istarget *-*-solaris2*] && $test_what == "-p" } {
return 0
}
# Support for -pg on irix relies on gcrt1.o which doesn't exist yet.
# See: http://gcc.gnu.org/ml/gcc/2002-10/msg00169.html
if { [istarget mips*-*-irix*]
- && ([lindex $test_what 1] == "-p" || [lindex $test_what 1] == "-pg") } {
+ && ($test_what == "-p" || $test_what == "-pg") } {
return 0
}
# We don't yet support profiling for MIPS16.
if { [istarget mips*-*-*]
&& ![check_effective_target_nomips16]
- && ([lindex $test_what 1] == "-p"
- || [lindex $test_what 1] == "-pg") } {
+ && ($test_what == "-p" || $test_what == "-pg") } {
return 0
}
# MinGW does not support -p.
- if { [istarget *-*-mingw*] && [lindex $test_what 1] == "-p" } {
+ if { [istarget *-*-mingw*] && $test_what == "-p" } {
return 0
}
# cygwin does not support -p.
- if { [istarget *-*-cygwin*] && [lindex $test_what 1] == "-p" } {
+ if { [istarget *-*-cygwin*] && $test_what == "-p" } {
return 0
}
# uClibc does not have gcrt1.o.
if { [check_effective_target_uclibc]
- && ([lindex $test_what 1] == "-p"
- || [lindex $test_what 1] == "-pg") } {
+ && ($test_what == "-p" || $test_what == "-pg") } {
return 0
}