2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 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. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2016-10-14 06:51:43 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_JS_DEBUG_H
|
|
|
|
|
|
|
|
namespace ircd {
|
|
|
|
namespace js {
|
|
|
|
|
2016-10-27 10:50:47 +02:00
|
|
|
// Returns static string
|
2017-08-23 23:25:22 +02:00
|
|
|
const char *reflect(const jstype &);
|
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 &);
|
2017-08-23 23:25:22 +02:00
|
|
|
const char *reflect(const JS::PromiseState &);
|
|
|
|
const char *reflect(const PromiseRejectionHandlingState &);
|
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-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);
|
2017-08-23 23:25:22 +02:00
|
|
|
void dump_promise(const JS::HandleObject &promise);
|
2016-10-27 10:50:47 +02:00
|
|
|
void backtrace();
|
|
|
|
|
|
|
|
// writes lines to ircd::js::log
|
|
|
|
void log_gcparams();
|
2016-10-14 06:51:43 +02:00
|
|
|
|
|
|
|
} // namespace js
|
|
|
|
} // namespace ircd
|