blob: ce93998f5676a3805a2a5f7be6358990d2bc4bca [file] [log] [blame]
license.botbf09a502008-08-24 00:55:551// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
[email protected]f1ea2fa2008-08-21 22:26:064
5#ifndef BASE_COMPILER_SPECIFIC_H_
6#define BASE_COMPILER_SPECIFIC_H_
[email protected]32b76ef2010-07-26 23:08:247#pragma once
[email protected]f1ea2fa2008-08-21 22:26:068
9#include "build/build_config.h"
10
11#if defined(COMPILER_MSVC)
12
13// Macros for suppressing and disabling warnings on MSVC.
14//
15// Warning numbers are enumerated at:
16// http://msdn.microsoft.com/en-us/library/8x5x43k7(VS.80).aspx
17//
18// The warning pragma:
19// http://msdn.microsoft.com/en-us/library/2c8f766e(VS.80).aspx
20//
21// Using __pragma instead of #pragma inside macros:
22// http://msdn.microsoft.com/en-us/library/d9x1s805.aspx
23
24// MSVC_SUPPRESS_WARNING disables warning |n| for the remainder of the line and
25// for the next line of the source file.
26#define MSVC_SUPPRESS_WARNING(n) __pragma(warning(suppress:n))
27
28// MSVC_PUSH_DISABLE_WARNING pushes |n| onto a stack of warnings to be disabled.
29// The warning remains disabled until popped by MSVC_POP_WARNING.
30#define MSVC_PUSH_DISABLE_WARNING(n) __pragma(warning(push)) \
31 __pragma(warning(disable:n))
[email protected]b91902d2008-09-16 19:28:0632
33// MSVC_PUSH_WARNING_LEVEL pushes |n| as the global warning level. The level
34// remains in effect until popped by MSVC_POP_WARNING(). Use 0 to disable all
35// warnings.
36#define MSVC_PUSH_WARNING_LEVEL(n) __pragma(warning(push, n))
37
38// Pop effects of innermost MSVC_PUSH_* macro.
[email protected]f1ea2fa2008-08-21 22:26:0639#define MSVC_POP_WARNING() __pragma(warning(pop))
40
[email protected]0eb9f4342008-11-21 18:48:5241#define MSVC_DISABLE_OPTIMIZE() __pragma(optimize("", off))
42#define MSVC_ENABLE_OPTIMIZE() __pragma(optimize("", on))
43
[email protected]f1ea2fa2008-08-21 22:26:0644// Allows |this| to be passed as an argument in constructor initializer lists.
45// This uses push/pop instead of the seemingly simpler suppress feature to avoid
46// having the warning be disabled for more than just |code|.
47//
48// Example usage:
49// Foo::Foo() : x(NULL), ALLOW_THIS_IN_INITIALIZER_LIST(y(this)), z(3) {}
50//
51// Compiler warning C4355: 'this': used in base member initializer list:
52// http://msdn.microsoft.com/en-us/library/3c594ae3(VS.80).aspx
53#define ALLOW_THIS_IN_INITIALIZER_LIST(code) MSVC_PUSH_DISABLE_WARNING(4355) \
54 code \
55 MSVC_POP_WARNING()
56
[email protected]dd9afc0b2008-11-21 23:58:0957#else // Not MSVC
[email protected]f1ea2fa2008-08-21 22:26:0658
59#define MSVC_SUPPRESS_WARNING(n)
60#define MSVC_PUSH_DISABLE_WARNING(n)
[email protected]b91902d2008-09-16 19:28:0661#define MSVC_PUSH_WARNING_LEVEL(n)
[email protected]f1ea2fa2008-08-21 22:26:0662#define MSVC_POP_WARNING()
[email protected]0eb9f4342008-11-21 18:48:5263#define MSVC_DISABLE_OPTIMIZE()
64#define MSVC_ENABLE_OPTIMIZE()
[email protected]f1ea2fa2008-08-21 22:26:0665#define ALLOW_THIS_IN_INITIALIZER_LIST(code) code
66
67#endif // COMPILER_MSVC
68
license.botbf09a502008-08-24 00:55:5569
[email protected]dd9afc0b2008-11-21 23:58:0970#if defined(COMPILER_GCC)
[email protected]34b2b002009-11-20 06:53:2871
[email protected]85e0f1f2008-12-17 18:30:2872#define ALLOW_UNUSED __attribute__((unused))
[email protected]dd9afc0b2008-11-21 23:58:0973#define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
[email protected]34b2b002009-11-20 06:53:2874
75// Tell the compiler a function is using a printf-style format string.
76// |format_param| is the one-based index of the format string parameter;
77// |dots_param| is the one-based index of the "..." parameter.
78// For v*printf functions (which take a va_list), pass 0 for dots_param.
79// (This is undocumented but matches what the system C headers do.)
80#define PRINTF_FORMAT(format_param, dots_param) \
81 __attribute__((format(printf, format_param, dots_param)))
82
83// WPRINTF_FORMAT is the same, but for wide format strings.
84// This doesn't appear to yet be implemented.
85// See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38308 .
86#define WPRINTF_FORMAT(format_param, dots_param)
87// If available, it would look like:
88// __attribute__((format(wprintf, format_param, dots_param)))
89
[email protected]dd9afc0b2008-11-21 23:58:0990#else // Not GCC
[email protected]34b2b002009-11-20 06:53:2891
[email protected]85e0f1f2008-12-17 18:30:2892#define ALLOW_UNUSED
[email protected]dd9afc0b2008-11-21 23:58:0993#define WARN_UNUSED_RESULT
[email protected]34b2b002009-11-20 06:53:2894#define PRINTF_FORMAT(x, y)
95#define WPRINTF_FORMAT(x, y)
96
[email protected]dd9afc0b2008-11-21 23:58:0997#endif
98
99#endif // BASE_COMPILER_SPECIFIC_H_