Home | History | Annotate | Download | only in jit

Lines Matching refs:regT0

51     // regT0 holds callee, regT1 holds argCount
52 loadPtr(Address(regT0, OBJECT_OFFSETOF(JSFunction, m_scopeChain)), regT3); // scopeChain
54 emitPutCellToCallFrameHeader(regT0, RegisterFile::Callee);
72 emitGetVirtualRegister(callee, regT0);
76 emitJumpSlowCaseIfNotJSCell(regT0);
77 addSlowCase(branchPtr(NotEqual, Address(regT0), TrustedImmPtr(m_globalData->jsFunctionVPtr)));
97 stubCall.addArgument(regT0);
119 stubCall.addArgument(callee, regT0);
123 wasEval = branchPtr(NotEqual, regT0, TrustedImmPtr(JSValue::encode(JSValue())));
126 emitGetVirtualRegister(callee, regT0);
129 emitJumpSlowCaseIfNotJSCell(regT0);
130 addSlowCase(branchPtr(NotEqual, Address(regT0), TrustedImmPtr(m_globalData->jsFunctionVPtr)));
154 stubCall.addArgument(regT0);
176 stubCall.addArgument(callee, regT0);
180 wasEval = branchPtr(NotEqual, regT0, TrustedImmPtr(JSValue::encode(JSValue())));
185 emitGetVirtualRegister(callee, regT0);
190 Jump jumpToSlow = branchPtrWithPatch(NotEqual, regT0, addressOfLinkedFunctionCheck, TrustedImmPtr(JSValue::encode(JSValue())));
203 loadPtr(Address(regT0, OBJECT_OFFSETOF(JSFunction, m_scopeChain)), regT1); // newScopeChain
208 storePtr(regT0, Address(callFrameRegister, (registerOffset + RegisterFile::Callee) * static_cast<int>(sizeof(Register))));
229 Jump callLinkFailNotObject = emitJumpIfNotJSCell(regT0);
230 Jump callLinkFailNotJSFunction = branchPtr(NotEqual, Address(regT0), TrustedImmPtr(m_globalData->jsFunctionVPtr));
249 stubCall.addArgument(regT0);