Home
last modified time | relevance | path

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

/external/webkit/JavaScriptCore/bytecompiler/
DBytecodeGenerator.h56 RegisterID* retAddrDst; member
312 PassRefPtr<Label> emitJumpSubroutine(RegisterID* retAddrDst, Label*);
DBytecodeGenerator.cpp1605 void BytecodeGenerator::pushFinallyContext(Label* target, RegisterID* retAddrDst) in pushFinallyContext() argument
1609 FinallyContext context = { target, retAddrDst }; in pushFinallyContext()
1735 … emitJumpSubroutine(topScope->finallyContext.retAddrDst, topScope->finallyContext.finallyAddr); in emitComplexJumpScopes()
1793 PassRefPtr<Label> BytecodeGenerator::emitJumpSubroutine(RegisterID* retAddrDst, Label* finally) in emitJumpSubroutine() argument
1796 instructions().append(retAddrDst->index()); in emitJumpSubroutine()
/external/webkit/JavaScriptCore/jit/
DJITOpcodes.cpp939 int retAddrDst = currentInstruction[1].u.operand; in emit_op_jsr() local
941 …Location = storePtrWithPatch(ImmPtr(0), Address(callFrameRegister, sizeof(Register) * retAddrDst)); in emit_op_jsr()
2280 int retAddrDst = currentInstruction[1].u.operand;
2282 …Location = storePtrWithPatch(ImmPtr(0), Address(callFrameRegister, sizeof(Register) * retAddrDst));
/external/webkit/JavaScriptCore/bytecode/
DCodeBlock.cpp1073 int retAddrDst = (++it)->u.operand; in dump() local
1075 …printf("[%4d] jsr\t\t %s, %d(->%d)\n", location, registerName(retAddrDst).c_str(), offset, locatio… in dump()
/external/webkit/JavaScriptCore/interpreter/
DInterpreter.cpp3738 int retAddrDst = (++vPC)->u.operand; in privateExecute() local
3740 callFrame->r(retAddrDst) = vPC + 1; in privateExecute()