@@ -191,8 +191,8 @@ namespace JSC { namespace LLInt {
191
191
extern " C" SlowPathReturnType llint_trace_operand (ExecState* exec, Instruction* pc, int fromWhere, int operand)
192
192
{
193
193
LLINT_BEGIN ();
194
- dataLogF (" <%d > %p / %p: executing bc#%zu, op#%u: Trace(%d): %d: %d\n " ,
195
- currentThread (),
194
+ dataLogF (" <%p > %p / %p: executing bc#%zu, op#%u: Trace(%d): %d: %d\n " ,
195
+ & Thread::current (),
196
196
exec->codeBlock (),
197
197
exec,
198
198
static_cast <intptr_t >(pc - exec->codeBlock ()->instructions ().begin ()),
@@ -215,8 +215,8 @@ extern "C" SlowPathReturnType llint_trace_value(ExecState* exec, Instruction* pc
215
215
} u;
216
216
u.asValue = JSValue::encode (value);
217
217
dataLogF (
218
- " <%d > %p / %p: executing bc#%zu, op#%u: Trace(%d): %d: %d: %08x:%08x: %s\n " ,
219
- currentThread (),
218
+ " <%p > %p / %p: executing bc#%zu, op#%u: Trace(%d): %d: %d: %08x:%08x: %s\n " ,
219
+ & Thread::current (),
220
220
exec->codeBlock (),
221
221
exec,
222
222
static_cast <intptr_t >(pc - exec->codeBlock ()->instructions ().begin ()),
@@ -232,7 +232,7 @@ extern "C" SlowPathReturnType llint_trace_value(ExecState* exec, Instruction* pc
232
232
233
233
LLINT_SLOW_PATH_DECL (trace_prologue)
234
234
{
235
- dataLogF (" <%d > %p / %p: in prologue of " , currentThread (), exec->codeBlock (), exec);
235
+ dataLogF (" <%p > %p / %p: in prologue of " , & Thread::current (), exec->codeBlock (), exec);
236
236
dataLog (*exec->codeBlock (), " \n " );
237
237
LLINT_END_IMPL ();
238
238
}
@@ -242,7 +242,7 @@ static void traceFunctionPrologue(ExecState* exec, const char* comment, CodeSpec
242
242
JSFunction* callee = jsCast<JSFunction*>(exec->jsCallee ());
243
243
FunctionExecutable* executable = callee->jsExecutable ();
244
244
CodeBlock* codeBlock = executable->codeBlockFor (kind);
245
- dataLogF (" <%d > %p / %p: in %s of " , currentThread (), codeBlock, exec, comment);
245
+ dataLogF (" <%p > %p / %p: in %s of " , & Thread::current (), codeBlock, exec, comment);
246
246
dataLog (*codeBlock);
247
247
dataLogF (" function %p, executable %p; numVars = %u, numParameters = %u, numCalleeLocals = %u, caller = %p.\n " ,
248
248
callee, executable, codeBlock->m_numVars , codeBlock->numParameters (), codeBlock->m_numCalleeLocals , exec->callerFrame ());
@@ -275,8 +275,8 @@ LLINT_SLOW_PATH_DECL(trace_arityCheck_for_construct)
275
275
LLINT_SLOW_PATH_DECL (trace)
276
276
{
277
277
OpcodeID opcodeID = Interpreter::getOpcodeID (pc[0 ].u .opcode );
278
- dataLogF (" <%d > %p / %p: executing bc#%zu, %s, pc = %p\n " ,
279
- currentThread (),
278
+ dataLogF (" <%p > %p / %p: executing bc#%zu, %s, pc = %p\n " ,
279
+ & Thread::current (),
280
280
exec->codeBlock (),
281
281
exec,
282
282
static_cast <intptr_t >(pc - exec->codeBlock ()->instructions ().begin ()),
@@ -294,8 +294,8 @@ LLINT_SLOW_PATH_DECL(trace)
294
294
295
295
LLINT_SLOW_PATH_DECL (special_trace)
296
296
{
297
- dataLogF (" <%d > %p / %p: executing special case bc#%zu, op#%u, return PC is %p\n " ,
298
- currentThread (),
297
+ dataLogF (" <%p > %p / %p: executing special case bc#%zu, op#%u, return PC is %p\n " ,
298
+ & Thread::current (),
299
299
exec->codeBlock (),
300
300
exec,
301
301
static_cast <intptr_t >(pc - exec->codeBlock ()->instructions ().begin ()),
0 commit comments