Exemplo n.º 1
0
void
parallel::SpewBailoutIR(uint32_t bblockId, uint32_t lirId,
                        const char *lir, const char *mir,
                        JSScript *script, jsbytecode *pc)
{
    spewer.spewBailoutIR(bblockId, lirId, lir, mir, script, pc);
}
Exemplo n.º 2
0
void
parallel::SpewMIR(MDefinition *mir, const char *fmt, ...)
{
    va_list ap;
    va_start(ap, fmt);
    spewer.spewMIR(mir, fmt, ap);
    va_end(ap);
}
Exemplo n.º 3
0
void
parallel::Spew(SpewChannel channel, const char *fmt, ...)
{
    va_list ap;
    va_start(ap, fmt);
    spewer.spewVA(channel, fmt, ap);
    va_end(ap);
}
Exemplo n.º 4
0
MethodStatus
parallel::SpewEndCompile(MethodStatus status)
{
    spewer.endCompile(status);
    return status;
}
Exemplo n.º 5
0
void
parallel::SpewBeginCompile(HandleScript script)
{
    spewer.beginCompile(script);
}
Exemplo n.º 6
0
void
parallel::SpewBailout(uint32_t count, ParallelBailoutCause cause)
{
    spewer.bailout(count, cause);
}
Exemplo n.º 7
0
ExecutionStatus
parallel::SpewEndOp(ExecutionStatus status)
{
    spewer.endOp(status);
    return status;
}
Exemplo n.º 8
0
void
parallel::SpewBeginOp(JSContext *cx, const char *name)
{
    spewer.beginOp(cx, name);
}
Exemplo n.º 9
0
bool
parallel::SpewEnabled(SpewChannel channel)
{
    return spewer.isActive(channel);
}
Exemplo n.º 10
0
void
parallel::SpewBeginCompile(HandleFunction fun)
{
    spewer.beginCompile(fun);
}
Exemplo n.º 11
0
void
parallel::SpewBailout(uint32_t count)
{
    spewer.bailout(count);
}