2018-02-03 18:22:01 -08: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-13 21:51:43 -07:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_JS_DEBUG_H
|
|
|
|
|
|
|
|
namespace ircd {
|
|
|
|
namespace js {
|
|
|
|
|
2016-10-27 01:50:47 -07:00
|
|
|
// Returns static string
|
2017-08-23 15:25:22 -06:00
|
|
|
const char *reflect(const jstype &);
|
2016-10-23 22:40:45 -07:00
|
|
|
const char *reflect(const JSType &);
|
2016-10-14 18:00:12 -07:00
|
|
|
const char *reflect(const JSExnType &);
|
2016-11-12 21:00:36 -08:00
|
|
|
const char *reflect(const JSGCMode &);
|
2016-10-14 18:00:12 -07:00
|
|
|
const char *reflect(const JSGCStatus &);
|
2016-11-12 21:00:36 -08:00
|
|
|
const char *reflect(const JS::GCProgress &);
|
2016-10-22 00:34:12 -07:00
|
|
|
const char *reflect(const JSGCParamKey &);
|
2016-10-14 18:00:12 -07:00
|
|
|
const char *reflect(const JSFinalizeStatus &);
|
2017-08-23 15:25:22 -06:00
|
|
|
const char *reflect(const JS::PromiseState &);
|
|
|
|
const char *reflect(const PromiseRejectionHandlingState &);
|
2016-10-31 01:01:34 -07:00
|
|
|
const char *reflect_prop(const uint &flag);
|
2016-10-23 18:17:33 -07:00
|
|
|
const char *reflect_telemetry(const int &id);
|
2016-10-13 21:51:43 -07:00
|
|
|
|
2016-10-27 01:50:47 -07:00
|
|
|
// Returns single-line string
|
2016-10-14 18:00:12 -07:00
|
|
|
std::string debug(const JS::Value &);
|
|
|
|
std::string debug(const JS::HandleObject &);
|
|
|
|
std::string debug(const JSErrorReport &);
|
2016-11-12 17:36:03 -08:00
|
|
|
std::string debug(const JSTracer &);
|
2016-10-27 01:50:47 -07: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 15:25:22 -06:00
|
|
|
void dump_promise(const JS::HandleObject &promise);
|
2016-10-27 01:50:47 -07:00
|
|
|
void backtrace();
|
|
|
|
|
|
|
|
// writes lines to ircd::js::log
|
|
|
|
void log_gcparams();
|
2016-10-13 21:51:43 -07:00
|
|
|
|
|
|
|
} // namespace js
|
|
|
|
} // namespace ircd
|