예제 #1
0
void ConservativeRoots::add(
    void* begin, void* end, JITStubRoutineSet& jitStubRoutines, DFGCodeBlocks& dfgCodeBlocks)
{
    CompositeMarkHook<JITStubRoutineSet, DFGCodeBlocks> markHook(
        jitStubRoutines, dfgCodeBlocks);
    genericAddSpan(begin, end, markHook);
}
예제 #2
0
void ConservativeRoots::add(void* begin, void* end, DFGCodeBlocks& dfgCodeBlocks)
{
    genericAddSpan(begin, end, dfgCodeBlocks);
}
예제 #3
0
void ConservativeRoots::add(void* begin, void* end)
{
    DummyMarkHook dummyMarkHook;
    genericAddSpan(begin, end, dummyMarkHook);
}
예제 #4
0
void ConservativeRoots::add(void* begin, void* end, JettisonedCodeBlocks& jettisonedCodeBlocks)
{
    genericAddSpan(begin, end, jettisonedCodeBlocks);
}
예제 #5
0
void ConservativeRoots::add(void* begin, void* end, JITStubRoutineSet& jitStubRoutines)
{
    genericAddSpan(begin, end, jitStubRoutines);
}