HomeSort by relevance Sort by last modified time
    Searched refs:registerID (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/JavaScriptCore/dfg/
DFGSpeculativeJIT.cpp 43 JITCompiler::RegisterID reg = JITCompiler::gprToRegisterID(gpr);
85 JITCompiler::RegisterID reg = JITCompiler::gprToRegisterID(gpr);
190 JITCompiler::RegisterID reg = JITCompiler::gprToRegisterID(gpr);
223 JITCompiler::RegisterID reg = JITCompiler::gprToRegisterID(gpr);
256 m_jit.loadPtr(JITCompiler::addressFor(node.local()), result.registerID());
263 m_jit.storePtr(value.registerID(), JITCompiler::addressFor(node.local()));
275 bitOp(op, valueOfInt32Constant(node.child1), op2.registerID(), result.registerID());
282 bitOp(op, valueOfInt32Constant(node.child2), op1.registerID(), result.registerID());
    [all...]
DFGNonSpeculativeJIT.cpp 66 JITCompiler::RegisterID jsValueReg = JITCompiler::gprToRegisterID(jsValueGpr);
68 JITCompiler::RegisterID tempReg = JITCompiler::gprToRegisterID(tempGpr);
102 JITCompiler::RegisterID jsValueReg = JITCompiler::gprToRegisterID(jsValueGpr);
103 JITCompiler::RegisterID resultReg = JITCompiler::gprToRegisterID(result);
125 JITCompiler::RegisterID reg = JITCompiler::gprToRegisterID(gpr);
203 m_jit.loadPtr(JITCompiler::addressFor(node.local()), result.registerID());
210 m_jit.storePtr(value.registerID(), JITCompiler::addressFor(node.local()));
222 bitOp(op, valueOfInt32Constant(node.child1), op2.registerID(), result.registerID());
229 bitOp(op, valueOfInt32Constant(node.child2), op1.registerID(), result.registerID())
    [all...]
DFGSpeculativeJIT.h 242 MacroAssembler::RegisterID registerID()
284 MacroAssembler::RegisterID registerID()
325 MacroAssembler::RegisterID registerID()
DFGJITCodeGenerator.h 162 JITCompiler::RegisterID reg = JITCompiler::gprToRegisterID(gpr);
169 JITCompiler::RegisterID reg = JITCompiler::gprToRegisterID(gpr);
228 JITCompiler::RegisterID reg = JITCompiler::gprToRegisterID(info.gpr());
308 void bitOp(NodeType op, int32_t imm, MacroAssembler::RegisterID op1, MacroAssembler::RegisterID result)
324 void bitOp(NodeType op, MacroAssembler::RegisterID op1, MacroAssembler::RegisterID op2, MacroAssembler::RegisterID result)
340 void shiftOp(NodeType op, MacroAssembler::RegisterID op1, int32_t shiftAmount, MacroAssembler::RegisterID result
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITInlineMethods.h 36 ALWAYS_INLINE void JIT::emitGetJITStubArg(unsigned argumentNumber, RegisterID dst)
53 ALWAYS_INLINE void JIT::emitPutToCallFrameHeader(RegisterID from, RegisterFile::CallFrameHeaderEntry entry)
58 ALWAYS_INLINE void JIT::emitPutCellToCallFrameHeader(RegisterID from, RegisterFile::CallFrameHeaderEntry entry)
66 ALWAYS_INLINE void JIT::emitPutIntToCallFrameHeader(RegisterID from, RegisterFile::CallFrameHeaderEntry entry)
77 ALWAYS_INLINE void JIT::emitGetFromCallFrameHeaderPtr(RegisterFile::CallFrameHeaderEntry entry, RegisterID to, RegisterID from)
85 ALWAYS_INLINE void JIT::emitLoadCharacterString(RegisterID src, RegisterID dst, JumpList& failures)
95 ALWAYS_INLINE void JIT::emitGetFromCallFrameHeader32(RegisterFile::CallFrameHeaderEntry entry, RegisterID to, RegisterID from
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 163 bool BytecodeGenerator::addVar(const Identifier& ident, bool isConstant, RegisterID*& r0)
178 bool BytecodeGenerator::addGlobalVar(const Identifier& ident, bool isConstant, RegisterID*& r0)
290 RegisterID* dst = addGlobalVar(function->ident(), false);
365 RegisterID* unmodifiedArgumentsRegister = addVar(); // Anonymous, so it can't be modified by user code.
366 RegisterID* argumentsRegister = addVar(propertyNames().arguments, false); // Can be changed by assigning to 'arguments'.
431 RefPtr<RegisterID> reg = addVar(ident, false);
467 RefPtr<RegisterID> func = newTemporary();
468 RefPtr<RegisterID> funcProto = newTemporary();
536 RegisterID* BytecodeGenerator::emitInitLazyRegister(RegisterID* reg
    [all...]

Completed in 205 milliseconds