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

  /external/webkit/Source/JavaScriptCore/interpreter/
RegisterFile.h 114 RegisterFile(JSGlobalData&, size_t capacity = defaultCapacity, size_t maxGlobals = defaultMaxGlobals);
131 size_t maxGlobals() const { return m_maxGlobals; }
164 inline RegisterFile::RegisterFile(JSGlobalData& globalData, size_t capacity, size_t maxGlobals)
166 , m_maxGlobals(maxGlobals)
172 ASSERT(maxGlobals && isPageAligned(maxGlobals));
174 size_t bufferLength = (capacity + maxGlobals) * sizeof(Register);
177 size_t committedSize = roundUpAllocationSize(maxGlobals * sizeof(Register), commitSize);
181 m_start = static_cast<Register*>(base) + maxGlobals;
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObject.cpp 423 ASSERT(static_cast<size_t>(newSize) < globalData().interpreter->registerFile().maxGlobals());
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 256 bool canOptimizeNewGlobals = symbolTable->size() + functionStack.size() + varStack.size() < registerFile->maxGlobals();
    [all...]

Completed in 63 milliseconds