2016-10-14 06:51:43 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Charybdis Development Team
|
|
|
|
* Copyright (C) 2016 Jason Volk <jason@zemos.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice is present in all copies.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_JS_DEBUG_H
|
|
|
|
|
|
|
|
namespace ircd {
|
|
|
|
namespace js {
|
|
|
|
|
2016-10-27 10:50:47 +02:00
|
|
|
// Returns static string
|
2016-10-24 07:40:45 +02:00
|
|
|
const char *reflect(const JSType &);
|
2016-10-15 03:00:12 +02:00
|
|
|
const char *reflect(const JSExnType &);
|
2016-11-13 06:00:36 +01:00
|
|
|
const char *reflect(const JSGCMode &);
|
2016-10-15 03:00:12 +02:00
|
|
|
const char *reflect(const JSGCStatus &);
|
2016-11-13 06:00:36 +01:00
|
|
|
const char *reflect(const JS::GCProgress &);
|
2016-10-22 09:34:12 +02:00
|
|
|
const char *reflect(const JSGCParamKey &);
|
2016-10-15 03:00:12 +02:00
|
|
|
const char *reflect(const JSFinalizeStatus &);
|
2016-10-23 03:46:27 +02:00
|
|
|
const char *reflect(const JSContextOp &);
|
2016-10-31 09:01:34 +01:00
|
|
|
const char *reflect_prop(const uint &flag);
|
2016-10-24 03:17:33 +02:00
|
|
|
const char *reflect_telemetry(const int &id);
|
2016-11-13 02:36:03 +01:00
|
|
|
const char *reflect(const jstype &);
|
2016-10-14 06:51:43 +02:00
|
|
|
|
2016-10-27 10:50:47 +02:00
|
|
|
// Returns single-line string
|
2016-10-15 03:00:12 +02:00
|
|
|
std::string debug(const JS::Value &);
|
|
|
|
std::string debug(const JS::HandleObject &);
|
|
|
|
std::string debug(const JSErrorReport &);
|
2016-11-13 02:36:03 +01:00
|
|
|
std::string debug(const JSTracer &);
|
2016-10-27 10:50:47 +02:00
|
|
|
|
|
|
|
// prints to IRCd stdout
|
|
|
|
void dump(const JSString *const &v);
|
|
|
|
void dump(const JSAtom *const &v);
|
|
|
|
void dump(const JSObject *const &v);
|
|
|
|
void dump(const JS::Value &v);
|
|
|
|
void dump(const jsid &v);
|
|
|
|
void dump(const JSContext *v);
|
|
|
|
void dump(const JSScript *const &v);
|
|
|
|
void dump(const char16_t *const &v, const size_t &len);
|
|
|
|
void dump(const ::js::InterpreterFrame *v);
|
|
|
|
void backtrace();
|
|
|
|
|
|
|
|
// writes lines to ircd::js::log
|
|
|
|
void log_gcparams();
|
2016-10-14 06:51:43 +02:00
|
|
|
|
|
|
|
} // namespace js
|
|
|
|
} // namespace ircd
|