2011-05-23 17:18:52 +10:00
|
|
|
/*
|
2015-04-13 18:05:28 +10:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-05-23 17:18:52 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2011-05-23 17:18:52 +10:00
|
|
|
*
|
2016-02-15 17:21:01 +11:00
|
|
|
* Copyright 2010-2016 Danny Robson <danny@nerdcruft.net>
|
2011-05-23 17:18:52 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "backtrace.hpp"
|
2012-08-10 17:40:19 +10:00
|
|
|
#include "debug.hpp"
|
2012-05-08 15:03:03 +10:00
|
|
|
#include "log.hpp"
|
2012-05-11 12:15:46 +10:00
|
|
|
#include "platform.hpp"
|
2011-05-23 17:18:52 +10:00
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <iostream>
|
|
|
|
|
2015-10-29 10:43:41 +11:00
|
|
|
using namespace util::debug;
|
2011-05-23 17:18:52 +10:00
|
|
|
|
|
|
|
|
2015-10-29 10:43:41 +11:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2011-05-23 17:18:52 +10:00
|
|
|
void
|
2015-10-29 10:43:41 +11:00
|
|
|
detail::panic (const char *msg)
|
|
|
|
{
|
|
|
|
std::cerr << "PANIC: " << msg << "\n" << ::debug::backtrace () << std::endl;
|
2012-06-12 13:04:20 +10:00
|
|
|
breakpoint ();
|
2011-05-23 17:18:52 +10:00
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-29 10:43:41 +11:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2011-05-23 17:18:52 +10:00
|
|
|
void
|
2015-10-29 10:43:41 +11:00
|
|
|
detail::not_implemented (const char *msg)
|
|
|
|
{
|
|
|
|
panic (msg);
|
2011-05-23 17:18:52 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-10-29 10:43:41 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
2011-05-23 17:18:52 +10:00
|
|
|
void
|
2015-10-29 10:43:41 +11:00
|
|
|
detail::unreachable (const char *msg)
|
|
|
|
{
|
|
|
|
panic (msg);
|
2011-05-23 17:18:52 +10:00
|
|
|
}
|
2012-04-24 17:38:07 +10:00
|
|
|
|
|
|
|
|
2015-10-29 10:43:41 +11:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2012-04-24 17:38:07 +10:00
|
|
|
void
|
2016-01-20 16:38:01 +11:00
|
|
|
warn (void)
|
2015-10-29 10:43:41 +11:00
|
|
|
{
|
2016-01-20 16:38:01 +11:00
|
|
|
warn ("Unusual code path found.");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
warn (const std::string &msg)
|
|
|
|
{
|
|
|
|
warn (msg.c_str ());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
warn (const char *msg)
|
|
|
|
{
|
|
|
|
LOG_WARN (msg);
|
2012-04-24 17:38:07 +10:00
|
|
|
}
|
2012-05-01 12:14:25 +10:00
|
|
|
|
|
|
|
|
2015-10-29 10:43:41 +11:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2012-11-09 15:16:48 +11:00
|
|
|
void
|
2015-10-29 10:43:41 +11:00
|
|
|
util::debug::init (void)
|
|
|
|
{
|
2012-11-09 15:16:48 +11:00
|
|
|
force_console ();
|
2016-02-15 17:21:01 +11:00
|
|
|
prepare_debugger ();
|
2012-11-09 15:16:48 +11:00
|
|
|
|
2016-02-15 17:21:01 +11:00
|
|
|
if (getenv ("DEBUG_WAIT"))
|
|
|
|
await_debugger ();
|
2012-08-10 17:40:19 +10:00
|
|
|
}
|
2016-03-21 14:19:08 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
static void
|
|
|
|
debug_wait [[gnu::constructor]] (void) {
|
|
|
|
if (auto val = getenv ("DEBUG_WAIT")) {
|
|
|
|
if (std::string ("0") != val)
|
|
|
|
await_debugger ();
|
|
|
|
}
|
|
|
|
}
|