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

  /external/webkit/JavaScriptCore/bytecode/
CodeBlock.h 54 static const int FirstConstantRegisterIndex = 0x40000000;
440 Register& constantRegister(int index) { return m_constantRegisters[index - FirstConstantRegisterIndex]; }
441 ALWAYS_INLINE bool isConstantRegisterIndex(int index) const { return index >= FirstConstantRegisterIndex; }
442 ALWAYS_INLINE JSValue getConstant(int index) const { return m_constantRegisters[index - FirstConstantRegisterIndex].jsValue(); }
CodeBlock.cpp 73 return makeString(valueToSourceString(exec, value), "(@k", UString::from(k - FirstConstantRegisterIndex), ")").UTF8String();
    [all...]
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 821 m_constantPoolRegisters.append(FirstConstantRegisterIndex + m_nextConstantOffset);
    [all...]

Completed in 142 milliseconds