Changeset 227609 in webkit for trunk/Source/JavaScriptCore/bytecode/ObjectAllocationProfile.h
- Timestamp:
- Jan 25, 2018, 9:21:09 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/ObjectAllocationProfile.h
r227592 r227609 44 44 45 45 ObjectAllocationProfile() 46 : m_inlineCapacity(0) 46 : m_allocator(0) 47 , m_inlineCapacity(0) 47 48 { 48 49 } … … 63 64 void clear() 64 65 { 65 m_allocator = Allocator();66 m_allocator = nullptr; 66 67 m_structure.clear(); 67 68 m_inlineCapacity = 0; … … 77 78 unsigned possibleDefaultPropertyCount(VM&, JSObject* prototype); 78 79 79 Allocatorm_allocator; // Precomputed to make things easier for generated code.80 BlockDirectory* m_allocator; // Precomputed to make things easier for generated code. 80 81 WriteBarrier<Structure> m_structure; 81 82 unsigned m_inlineCapacity;
Note:
See TracChangeset
for help on using the changeset viewer.