| 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); |
nothing calls this directly
no test coverage detected