From patchwork Thu Jul 3 04:50:25 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 1864 Received: (qmail 15908 invoked by alias); 3 Jul 2014 04:51:05 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 15865 invoked by uid 89); 3 Jul 2014 04:51:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_00, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=no version=3.3.2 X-HELO: mail-qg0-f41.google.com X-Received: by 10.140.91.66 with SMTP id y60mr3522226qgd.58.1404363044691; Wed, 02 Jul 2014 21:50:44 -0700 (PDT) From: Richard Henderson To: libc-alpha@sourceware.org Cc: will.newton@linaro.org, marcus.shawcroft@arm.com Subject: [PATCH v2 7/8] Always provide HP_SMALL_TIMING_AVAIL Date: Wed, 2 Jul 2014 21:50:25 -0700 Message-Id: <1404363026-23526-8-git-send-email-rth@twiddle.net> In-Reply-To: <1404363026-23526-1-git-send-email-rth@twiddle.net> References: <1404363026-23526-1-git-send-email-rth@twiddle.net> --- sysdeps/aarch64/hp-timing.h | 1 + sysdeps/generic/hp-timing.h | 1 + sysdeps/i386/i686/hp-timing.h | 1 + sysdeps/ia64/hp-timing.h | 1 + sysdeps/powerpc/powerpc32/power4/hp-timing.h | 1 + sysdeps/powerpc/powerpc64/hp-timing.h | 1 + sysdeps/sparc/sparc32/sparcv9/hp-timing.h | 1 + sysdeps/sparc/sparc64/hp-timing.h | 1 + sysdeps/x86_64/hp-timing.h | 1 + 9 files changed, 9 insertions(+) diff --git a/sysdeps/aarch64/hp-timing.h b/sysdeps/aarch64/hp-timing.h index 18cb54f..614d8c5 100644 --- a/sysdeps/aarch64/hp-timing.h +++ b/sysdeps/aarch64/hp-timing.h @@ -22,6 +22,7 @@ /* We always assume having the cycle counter register. */ #define HP_TIMING_AVAIL (1) +#define HP_SMALL_TIMING_AVAIL (1) /* We indeed have inlined functions. */ #define HP_TIMING_INLINE (1) diff --git a/sysdeps/generic/hp-timing.h b/sysdeps/generic/hp-timing.h index 95c051d..99f3456 100644 --- a/sysdeps/generic/hp-timing.h +++ b/sysdeps/generic/hp-timing.h @@ -26,6 +26,7 @@ /* Provide dummy definitions. */ #define HP_TIMING_AVAIL (0) +#define HP_SMALL_TIMING_AVAIL (0) #define HP_TIMING_INLINE (0) typedef int hp_timing_t; #define HP_TIMING_NOW(var) diff --git a/sysdeps/i386/i686/hp-timing.h b/sysdeps/i386/i686/hp-timing.h index 512efc5..296a839 100644 --- a/sysdeps/i386/i686/hp-timing.h +++ b/sysdeps/i386/i686/hp-timing.h @@ -22,6 +22,7 @@ /* We always assume having the timestamp register. */ #define HP_TIMING_AVAIL (1) +#define HP_SMALL_TIMING_AVAIL (1) /* We indeed have inlined functions. */ #define HP_TIMING_INLINE (1) diff --git a/sysdeps/ia64/hp-timing.h b/sysdeps/ia64/hp-timing.h index 3d441ff..8f19b41 100644 --- a/sysdeps/ia64/hp-timing.h +++ b/sysdeps/ia64/hp-timing.h @@ -22,6 +22,7 @@ /* We always assume having the timestamp register. */ #define HP_TIMING_AVAIL (1) +#define HP_SMALL_TIMING_AVAIL (1) /* We indeed have inlined functions. */ #define HP_TIMING_INLINE (1) diff --git a/sysdeps/powerpc/powerpc32/power4/hp-timing.h b/sysdeps/powerpc/powerpc32/power4/hp-timing.h index f5237e3..76557df 100644 --- a/sysdeps/powerpc/powerpc32/power4/hp-timing.h +++ b/sysdeps/powerpc/powerpc32/power4/hp-timing.h @@ -22,6 +22,7 @@ /* We always assume having the timestamp register. */ #define HP_TIMING_AVAIL (1) +#define HP_SMALL_TIMING_AVAIL (1) /* We indeed have inlined functions. */ #define HP_TIMING_INLINE (1) diff --git a/sysdeps/powerpc/powerpc64/hp-timing.h b/sysdeps/powerpc/powerpc64/hp-timing.h index d4fcb3d..028da9d 100644 --- a/sysdeps/powerpc/powerpc64/hp-timing.h +++ b/sysdeps/powerpc/powerpc64/hp-timing.h @@ -22,6 +22,7 @@ /* We always assume having the timestamp register. */ #define HP_TIMING_AVAIL (1) +#define HP_SMALL_TIMING_AVAIL (1) /* We indeed have inlined functions. */ #define HP_TIMING_INLINE (1) diff --git a/sysdeps/sparc/sparc32/sparcv9/hp-timing.h b/sysdeps/sparc/sparc32/sparcv9/hp-timing.h index 4d9188f..a1f083d 100644 --- a/sysdeps/sparc/sparc32/sparcv9/hp-timing.h +++ b/sysdeps/sparc/sparc32/sparcv9/hp-timing.h @@ -21,6 +21,7 @@ #define _HP_TIMING_H 1 #define HP_TIMING_AVAIL (1) +#define HP_SMALL_TIMING_AVAIL (1) #define HP_TIMING_INLINE (1) typedef unsigned long long int hp_timing_t; diff --git a/sysdeps/sparc/sparc64/hp-timing.h b/sysdeps/sparc/sparc64/hp-timing.h index ea3ba9b..62da8bc 100644 --- a/sysdeps/sparc/sparc64/hp-timing.h +++ b/sysdeps/sparc/sparc64/hp-timing.h @@ -21,6 +21,7 @@ #define _HP_TIMING_H 1 #define HP_TIMING_AVAIL (1) +#define HP_SMALL_TIMING_AVAIL (1) #define HP_TIMING_INLINE (1) typedef unsigned long int hp_timing_t; diff --git a/sysdeps/x86_64/hp-timing.h b/sysdeps/x86_64/hp-timing.h index 89501fc..2d71f70 100644 --- a/sysdeps/x86_64/hp-timing.h +++ b/sysdeps/x86_64/hp-timing.h @@ -21,6 +21,7 @@ /* We always assume having the timestamp register. */ #define HP_TIMING_AVAIL (1) +#define HP_SMALL_TIMING_AVAIL (1) /* We indeed have inlined functions. */ #define HP_TIMING_INLINE (1)