DORMANTno replies

[PATCH] add likely/unlikely hints

From: Dmitry Potapov <hidden>
Date: 2016-06-15 22:51:07
Subsystem: the rest · Maintainer: Linus Torvalds

Usually modern CPUs work fine even when the most likely branch is not local,
thus these hints do not provide noticeable wins, but in a situation of some
loop that usually executed only once, the compiler may aggressively unroll
the loop making the code bigger and slower when the loop is executed only
once. So, for such rare situations, these hints may be helpful.

Signed-off-by: Dmitry Potapov <redacted>
---

 git-compat-util.h |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/git-compat-util.h b/git-compat-util.h
index 40498b3..f690b29 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -60,6 +60,15 @@
 /* Approximation of the length of the decimal representation of this type. */
 #define decimal_length(x)	((int)(sizeof(x) * 2.56 + 0.5) + 1)
 
+/* Hints for branch prediction */
+#if defined(__GNUC__) && (__GNUC__ >= 3)
+#define likely(x)	__builtin_expect(!!(x), 1)
+#define unlikely(x)	__builtin_expect(!!(x), 0)
+#else
+#define likely(x)	(!!(x))
+#define unlikely(x)	(!!(x))
+#endif
+
 #if defined(__sun__)
  /*
   * On Solaris, when _XOPEN_EXTENDED is set, its header file
-- 
1.7.5
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help