Changeset 128146 in webkit for trunk/Source/JavaScriptCore/llint/LowLevelInterpreter.asm
- Timestamp:
- Sep 10, 2012, 10:05:53 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/llint/LowLevelInterpreter.asm
r128015 r128146 87 87 # Property storage constants 88 88 if JSVALUE64 89 const InlineStorageCapacity = 589 const InlineStorageCapacity = 6 90 90 else 91 const InlineStorageCapacity = 691 const InlineStorageCapacity = 7 92 92 end 93 93 … … 311 311 end 312 312 313 macro allocateBasicJSObject(sizeClassIndex, classInfoOffset,structure, result, scratch1, scratch2, slowCase)313 macro allocateBasicJSObject(sizeClassIndex, structure, result, scratch1, scratch2, slowCase) 314 314 if ALWAYS_ALLOCATE_SLOW 315 315 jmp slowCase … … 339 339 340 340 # Initialize the object. 341 loadp classInfoOffset[scratch1], scratch2342 storep scratch2, [result]343 341 storep structure, JSCell::m_structure[result] 344 342 storep 0, JSObject::m_outOfLineStorage[result]
Note:
See TracChangeset
for help on using the changeset viewer.