Changeset 154199 in webkit for trunk/Source/JavaScriptCore/runtime/Structure.h
- Timestamp:
- Aug 16, 2013, 12:15:31 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Structure.h
r154127 r154199 37 37 #include "PropertyOffset.h" 38 38 #include "Protect.h" 39 #include "PutPropertySlot.h" 39 40 #include "StructureRareData.h" 40 41 #include "StructureTransitionTable.h" … … 96 97 static void dumpStatistics(); 97 98 98 JS_EXPORT_PRIVATE static Structure* addPropertyTransition(VM&, Structure*, PropertyName, unsigned attributes, JSCell* specificValue, PropertyOffset& );99 JS_EXPORT_PRIVATE static Structure* addPropertyTransition(VM&, Structure*, PropertyName, unsigned attributes, JSCell* specificValue, PropertyOffset&, PutPropertySlot::Context = PutPropertySlot::UnknownContext); 99 100 static Structure* addPropertyTransitionToExistingStructureConcurrently(Structure*, StringImpl* uid, unsigned attributes, JSCell* specificValue, PropertyOffset&); 100 101 JS_EXPORT_PRIVATE static Structure* addPropertyTransitionToExistingStructure(Structure*, PropertyName, unsigned attributes, JSCell* specificValue, PropertyOffset&); … … 465 466 466 467 static const int s_maxTransitionLength = 64; 468 static const int s_maxTransitionLengthForNonEvalPutById = 512; 467 469 468 470 static const unsigned maxSpecificFunctionThrashCount = 3;
Note:
See TracChangeset
for help on using the changeset viewer.