]> git.saurik.com Git - apt.git/commitdiff
add a few gcc helpers, including [un]likely() and __deprecated
authorDavid Kalnischkies <kalnischkies@gmail.com>
Fri, 22 Jan 2010 07:27:20 +0000 (08:27 +0100)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Fri, 22 Jan 2010 07:27:20 +0000 (08:27 +0100)
apt-pkg/contrib/system.h

index 7ec3d7feb4d3f53a1b146e5f3bff275c71f108ed..b57093b93a59309e873d1436012e16fec213e417 100644 (file)
 #define CLRFLAG(v,f)   ((v) &=~FLAG(f))
 #define        CHKFLAG(v,f)    ((v) &  FLAG(f) ? true : false)
 
+// some nice optional GNUC features
+#if __GNUC__ >= 3
+        #define __must_check    __attribute__ ((warn_unused_result))
+        #define __deprecated    __attribute__ ((deprecated))
+        /* likely() and unlikely() can be used to mark boolean expressions
+           as (not) likely true which will help the compiler to optimise */
+        #define likely(x)       __builtin_expect (!!(x), 1)
+        #define unlikely(x)     __builtin_expect (!!(x), 0)
+#else
+        #define __must_check    /* no warn_unused_result */
+        #define __deprecated    /* no deprecated */
+        #define likely(x)       (x)
+        #define unlikely(x)     (x)
+#endif
+
+// cold functions are unlikely() to be called
+#if (__GNUC__ == 4 && __GNUC_MINOR__ >= 3) || __GNUC__ > 4
+        #define __cold  __attribute__ ((__cold__))
+#else
+        #define __cold  /* no cold marker */
+#endif
+
 #endif