2013-07-24 07:41:39 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-03-01 02:40:47 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2013-07-24 07:41:39 +00:00
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2012-03-01 02:40:47 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* MOZ_LIKELY and MOZ_UNLIKELY macros to hint to the compiler how a
|
|
|
|
* boolean predicate should be branch-predicted.
|
|
|
|
*/
|
|
|
|
|
2013-07-24 07:41:39 +00:00
|
|
|
#ifndef mozilla_Likely_h
|
|
|
|
#define mozilla_Likely_h
|
2012-03-02 05:20:32 +00:00
|
|
|
|
2012-12-18 18:22:28 +00:00
|
|
|
#if defined(__clang__) || defined(__GNUC__)
|
2012-09-20 11:17:05 +00:00
|
|
|
# define MOZ_LIKELY(x) (__builtin_expect(!!(x), 1))
|
|
|
|
# define MOZ_UNLIKELY(x) (__builtin_expect(!!(x), 0))
|
2012-03-01 02:40:47 +00:00
|
|
|
#else
|
2012-09-20 11:17:05 +00:00
|
|
|
# define MOZ_LIKELY(x) (!!(x))
|
|
|
|
# define MOZ_UNLIKELY(x) (!!(x))
|
2012-03-01 02:40:47 +00:00
|
|
|
#endif
|
|
|
|
|
2013-07-24 07:41:39 +00:00
|
|
|
#endif /* mozilla_Likely_h */
|