Searched defs:FirstConstantRegisterIndex (Results 1 - 1 of 1) sorted by relevance

/external/webkit/JavaScriptCore/bytecode/
H A DCodeBlock.h54 static const int FirstConstantRegisterIndex = 0x40000000; variable
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(); }

Completed in 40 milliseconds