HomeSort by relevance Sort by last modified time
    Searched defs:regT1 (Results 1 - 5 of 5) sorted by null

  /external/webkit/JavaScriptCore/jit/
JITCall.cpp 52 // regT0 holds callee, regT1 holds argCount
53 store32(regT1, Address(callFrameRegister, RegisterFile::ArgumentCount * static_cast<int>(sizeof(Register))));
55 loadPtr(Address(regT0, OBJECT_OFFSETOF(JSFunction, m_data) + OBJECT_OFFSETOF(ScopeChain, m_node)), regT1); // scopeChain
59 storePtr(regT1, Address(callFrameRegister, RegisterFile::ScopeChain * static_cast<int>(sizeof(Register)))); // scopeChain
67 emitPutJITStubArg(regT1, regT0, 0);
79 emitPutJITStubArg(regT1, regT0, 0);
88 emitPutJITStubArg(regT1, regT0, 0);
100 emitLoad(callee, regT1, regT0);
106 emitJumpSlowCaseIfNotJSCell(callee, regT1);
115 move(regT2, regT1); // argCoun
    [all...]
JITPropertyAccess.cpp 212 emitLoad(base, regT1, regT0);
213 emitJumpSlowCaseIfNotJSCell(base, regT1);
226 move(Imm32(JSValue::CellTag), regT1);
242 emitStore(dst, regT1, regT0);
243 map(m_bytecodeIndex + OPCODE_LENGTH(op_method_check), dst, regT1, regT0);
277 emitLoad2(base, regT1, regT0, property, regT3, regT2);
280 emitJumpSlowCaseIfNotJSCell(base, regT1);
286 load32(BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + 4), regT1); // tag
288 addSlowCase(branch32(Equal, regT1, Imm32(JSValue::EmptyValueTag)));
290 emitStore(dst, regT1, regT0)
    [all...]
JIT.h 206 static const RegisterID regT1 = X86Registers::edx;
224 static const RegisterID regT1 = X86Registers::edx;
237 static const RegisterID regT1 = ARMRegisters::r1;
256 static const RegisterID regT1 = ARMRegisters::r1;
    [all...]
JITOpcodes.cpp 53 // regT0 holds payload, regT1 holds tag
55 Jump string_failureCases1 = branch32(NotEqual, regT1, Imm32(JSValue::CellTag));
63 move(Imm32(JSValue::Int32Tag), regT1);
72 // regT0 holds callee, regT1 holds argCount. regT2 will hold the FunctionExecutable.
83 emitGetJITStubArg(2, regT1); // argCount
88 Jump arityCheckOkay2 = branch32(Equal, Address(regT2, OBJECT_OFFSETOF(FunctionExecutable, m_numParameters)), regT1);
93 move(regT1, callFrameRegister);
94 emitGetJITStubArg(2, regT1); // argCount
111 // regT0 holds callee, regT1 holds argCount. regT2 will hold the FunctionExecutable.
121 emitGetJITStubArg(2, regT1); // argCoun
    [all...]
  /external/webkit/JavaScriptCore/yarr/
RegexJIT.cpp 54 static const RegisterID regT1 = ARMRegisters::r6;
64 static const RegisterID regT1 = X86Registers::esi;
74 static const RegisterID regT1 = X86Registers::ebx;
562 const RegisterID countRegister = regT1;
585 const RegisterID countRegister = regT1;
623 const RegisterID countRegister = regT1;
678 const RegisterID countRegister = regT1;
703 const RegisterID countRegister = regT1;
744 const RegisterID countRegister = regT1;
    [all...]

Completed in 160 milliseconds