Searched refs:retAddrDst (Results 1 - 6 of 6) sorted by relevance
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
H A D | BytecodeGenerator.h | 71 RegisterID* retAddrDst; member in struct:JSC::FinallyContext 352 PassRefPtr<Label> emitJumpSubroutine(RegisterID* retAddrDst, Label*);
|
H A D | BytecodeGenerator.cpp | 1864 void BytecodeGenerator::pushFinallyContext(Label* target, RegisterID* retAddrDst) argument 1868 FinallyContext context = { target, retAddrDst }; 1996 emitJumpSubroutine(topScope->finallyContext.retAddrDst, topScope->finallyContext.finallyAddr); 2072 PassRefPtr<Label> BytecodeGenerator::emitJumpSubroutine(RegisterID* retAddrDst, Label* finally) argument 2077 instructions().append(retAddrDst->index());
|
/external/webkit/Source/JavaScriptCore/bytecode/ |
H A D | CodeBlock.cpp | 1201 int retAddrDst = (++it)->u.operand; local 1203 printf("[%4d] jsr\t\t %s, %d(->%d)\n", location, registerName(exec, retAddrDst).data(), offset, location + offset);
|
/external/webkit/Source/JavaScriptCore/jit/ |
H A D | JITOpcodes.cpp | 781 int retAddrDst = currentInstruction[1].u.operand; local 783 DataLabelPtr storeLocation = storePtrWithPatch(TrustedImmPtr(0), Address(callFrameRegister, sizeof(Register) * retAddrDst));
|
H A D | JITOpcodes32_64.cpp | 1026 int retAddrDst = currentInstruction[1].u.operand; local 1028 DataLabelPtr storeLocation = storePtrWithPatch(TrustedImmPtr(0), Address(callFrameRegister, sizeof(Register) * retAddrDst));
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
H A D | Interpreter.cpp | 4695 /* jsr retAddrDst(r) target(offset) 4697 Places the address of the next instruction into the retAddrDst 4700 int retAddrDst = vPC[1].u.operand; 4702 callFrame->r(retAddrDst) = vPC + OPCODE_LENGTH(op_jsr);
|
Completed in 139 milliseconds