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

  /external/webkit/JavaScriptCore/bytecode/
CodeBlock.h 438 size_t numberOfConstantRegisters() const { return m_constantRegisters.size(); }
439 void addConstantRegister(const Register& r) { return m_constantRegisters.append(r); }
440 Register& constantRegister(int index) { return m_constantRegisters[index - FirstConstantRegisterIndex]; }
442 ALWAYS_INLINE JSValue getConstant(int index) const { return m_constantRegisters[index - FirstConstantRegisterIndex].jsValue(); }
537 Vector<Register> m_constantRegisters;
CodeBlock.cpp 356 if (!m_constantRegisters.isEmpty()) {
361 printf(" k%u = %s\n", registerIndex, valueToSourceString(exec, m_constantRegisters[i].jsValue()).ascii());
364 } while (i < m_constantRegisters.size());
    [all...]

Completed in 231 milliseconds