Changeset 271489 in webkit
- Timestamp:
- Jan 14, 2021, 10:10:38 AM (6 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
jit/JITOpcodes.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r271449 r271489 1 2021-01-14 Saam Barati <sbarati@apple.com> 2 3 Baseline JIT should emit mutatorFence after inline allocations 4 https://bugs.webkit.org/show_bug.cgi?id=220572 5 6 Reviewed by Yusuke Suzuki. 7 8 * jit/JITOpcodes.cpp: 9 (JSC::JIT::emit_op_new_object): 10 (JSC::JIT::emit_op_create_this): 11 1 12 2021-01-13 Xan Lopez <xan@igalia.com> 2 13 -
trunk/Source/JavaScriptCore/jit/JITOpcodes.cpp
r271279 r271489 102 102 emitAllocateJSObject(resultReg, JITAllocator::constant(allocator), allocatorReg, TrustedImmPtr(structure), butterfly, scratchReg, slowCases); 103 103 emitInitializeInlineStorage(resultReg, structure->inlineCapacity()); 104 mutatorFence(*m_vm); 104 105 addSlowCase(slowCases); 105 106 emitPutVirtualRegister(bytecode.m_dst); … … 1086 1087 load8(Address(structureReg, Structure::inlineCapacityOffset()), scratchReg); 1087 1088 emitInitializeInlineStorage(resultReg, scratchReg); 1089 mutatorFence(*m_vm); 1088 1090 addSlowCase(slowCases); 1089 1091 emitPutVirtualRegister(bytecode.m_dst);
Note:
See TracChangeset
for help on using the changeset viewer.