| // Copyright (c) 2002-2010 The ANGLE Project Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| // debug.h: Debugging utilities. |
| #ifndef COMPILER_DEBUG_H_ |
| #define COMPILER_DEBUG_H_ |
| #define TRACE_ENABLED // define to enable debug message tracing |
| // Outputs text to the debug log |
| void Trace(const char* format, ...); |
| #define Trace(...) ((void)0) |
| // A macro asserting a condition and outputting failures to the debug log |
| #define ASSERT(expression) do { \ |
| Trace("Assert failed: %s(%d): "#expression"\n", __FUNCTION__, __LINE__); \ |
| #define UNIMPLEMENTED() do { \ |
| Trace("Unimplemented invoked: %s(%d)\n", __FUNCTION__, __LINE__); \ |
| #define UNREACHABLE() do { \ |
| Trace("Unreachable reached: %s(%d)\n", __FUNCTION__, __LINE__); \ |
| #endif // COMPILER_DEBUG_H_ |