Changeset 37283 in webkit for trunk/JavaScriptCore/VM
- Timestamp:
- Oct 3, 2008, 10:47:38 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/RegisterFile.h
r37213 r37283 107 107 enum { ArgumentsRegister = 0 }; 108 108 109 enum { DefaultCapacity = 2 * 1024 * 1024 / sizeof(Register) };110 enum { DefaultMaxGlobals = 8 * 1024 };109 static const size_t defaultCapacity = 524288; 110 static const size_t defaultMaxGlobals = 8192; 111 111 112 RegisterFile(size_t capacity = DefaultCapacity, size_t maxGlobals = DefaultMaxGlobals)112 RegisterFile(size_t capacity = defaultCapacity, size_t maxGlobals = defaultMaxGlobals) 113 113 : m_numGlobals(0) 114 114 , m_maxGlobals(maxGlobals)
Note:
See TracChangeset
for help on using the changeset viewer.