MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / jit_debug

Function jit_debug

src/builtin/module_jit.cpp:510–516  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

508 }
509
510 DAS_API void jit_debug ( vec4f res, TypeInfo * typeInfo, char * message, Context * context, LineInfoArg * at ) {
511 FPE_DISABLE;
512 TextWriter ssw;
513 if ( message ) ssw << message << " ";
514 ssw << debug_type(typeInfo) << " = " << debug_value(res, typeInfo, PrintFlags::debugger) << "\n";
515 context->to_out(at, ssw.str().c_str());
516 }
517
518 DAS_API bool jit_iterator_iterate ( das::Sequence &it, void *data, das::Context *context ) {
519 return builtin_iterator_iterate(it, data, context);

Callers

nothing calls this directly

Calls 5

debug_typeFunction · 0.85
debug_valueFunction · 0.85
to_outMethod · 0.80
c_strMethod · 0.45
strMethod · 0.45

Tested by

no test coverage detected