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

  /external/webkit/JavaScriptCore/interpreter/
RegisterFile.h 120 RegisterFile(size_t capacity = defaultCapacity, size_t maxGlobals = defaultMaxGlobals);
135 size_t maxGlobals() const { return m_maxGlobals; }
162 inline RegisterFile::RegisterFile(size_t capacity, size_t maxGlobals)
164 , m_maxGlobals(maxGlobals)
172 ASSERT(isPageAligned(maxGlobals));
175 size_t bufferLength = (capacity + maxGlobals) * sizeof(Register);
196 size_t committedSize = roundUpAllocationSize(maxGlobals * sizeof(Register), commitSize);
218 m_start = m_buffer + maxGlobals;
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 253 bool canOptimizeNewGlobals = symbolTable->size() + functionStack.size() + varStack.size() < registerFile->maxGlobals();
    [all...]

Completed in 353 milliseconds