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

  /external/webkit/Source/JavaScriptCore/jit/
JSInterfaceJIT.h 233 ASSERT(static_cast<int>(virtualRegisterIndex) < FirstConstantRegisterIndex);
239 ASSERT(static_cast<int>(virtualRegisterIndex) < FirstConstantRegisterIndex);
246 ASSERT(virtualRegisterIndex < FirstConstantRegisterIndex);
252 ASSERT(virtualRegisterIndex < FirstConstantRegisterIndex);
268 ASSERT(static_cast<int>(virtualRegisterIndex) < FirstConstantRegisterIndex);
328 ASSERT(virtualRegisterIndex < FirstConstantRegisterIndex);
334 ASSERT(virtualRegisterIndex < FirstConstantRegisterIndex);
339 ASSERT(virtualRegisterIndex < FirstConstantRegisterIndex);
346 ASSERT(virtualRegisterIndex < FirstConstantRegisterIndex);
  /external/webkit/Source/JavaScriptCore/dfg/
DFGByteCodeParser.cpp 78 if (operand >= FirstConstantRegisterIndex) {
79 unsigned constant = operand - FirstConstantRegisterIndex;
193 if (operand >= FirstConstantRegisterIndex) {
196 return getInt32Constant(v.asInt32(), operand - FirstConstantRegisterIndex);
205 if (operand >= FirstConstantRegisterIndex) {
208 return getDoubleConstant(v.uncheckedGetNumber(), operand - FirstConstantRegisterIndex);
350 return m_codeBlock->getConstant(FirstConstantRegisterIndex + m_graph[index].constantNumber());
361 JSValue testMe = m_codeBlock->getConstant(FirstConstantRegisterIndex + m_constantUndefined);
374 ASSERT(m_codeBlock->getConstant(FirstConstantRegisterIndex + m_constantUndefined).isUndefined());
386 JSValue testMe = m_codeBlock->getConstant(FirstConstantRegisterIndex + m_constantNull)
    [all...]
DFGJITCompiler.h 283 return codeBlock()->constantRegister(FirstConstantRegisterIndex + constantIndex).get();
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h 54 static const int FirstConstantRegisterIndex = 0x40000000;
416 WriteBarrier<Unknown>& constantRegister(int index) { return m_constantRegisters[index - FirstConstantRegisterIndex]; }
417 ALWAYS_INLINE bool isConstantRegisterIndex(int index) const { return index >= FirstConstantRegisterIndex; }
418 ALWAYS_INLINE JSValue getConstant(int index) const { return m_constantRegisters[index - FirstConstantRegisterIndex].get(); }
636 ASSERT(index < FirstConstantRegisterIndex);
CodeBlock.cpp 75 return makeUString(valueToSourceString(exec, value), "(@k", UString::number(k - FirstConstantRegisterIndex), ")").utf8();
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp     [all...]

Completed in 74 milliseconds