Home
last modified time | relevance | path

Searched refs:retAddrDst (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/JavaScriptCore/bytecompiler/
DBytecodeGenerator.h71 RegisterID* retAddrDst; member
352 PassRefPtr<Label> emitJumpSubroutine(RegisterID* retAddrDst, Label*);
DBytecodeGenerator.cpp1864 void BytecodeGenerator::pushFinallyContext(Label* target, RegisterID* retAddrDst) in pushFinallyContext() argument
1868 FinallyContext context = { target, retAddrDst }; in pushFinallyContext()
1996 … emitJumpSubroutine(topScope->finallyContext.retAddrDst, topScope->finallyContext.finallyAddr); in emitComplexJumpScopes()
2072 PassRefPtr<Label> BytecodeGenerator::emitJumpSubroutine(RegisterID* retAddrDst, Label* finally) in emitJumpSubroutine() argument
2077 instructions().append(retAddrDst->index()); in emitJumpSubroutine()
/external/webkit/Source/JavaScriptCore/bytecode/
DCodeBlock.cpp1201 int retAddrDst = (++it)->u.operand; in dump() local
1203 …printf("[%4d] jsr\t\t %s, %d(->%d)\n", location, registerName(exec, retAddrDst).data(), offset, lo… in dump()
/external/webkit/Source/JavaScriptCore/jit/
DJITOpcodes.cpp781 int retAddrDst = currentInstruction[1].u.operand; in emit_op_jsr() local
783 …n = storePtrWithPatch(TrustedImmPtr(0), Address(callFrameRegister, sizeof(Register) * retAddrDst)); in emit_op_jsr()
DJITOpcodes32_64.cpp1026 int retAddrDst = currentInstruction[1].u.operand; in emit_op_jsr() local
1028 …n = storePtrWithPatch(TrustedImmPtr(0), Address(callFrameRegister, sizeof(Register) * retAddrDst)); in emit_op_jsr()
/external/webkit/Source/JavaScriptCore/interpreter/
DInterpreter.cpp4700 int retAddrDst = vPC[1].u.operand; in privateExecute() local
4702 callFrame->r(retAddrDst) = vPC + OPCODE_LENGTH(op_jsr); in privateExecute()