Changeset 225697 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Dec 8, 2017, 1:38:02 PM (7 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r225695 r225697 1 2017-12-08 Mark Lam <[email protected]> 2 3 Need to unpoison native function pointers for CLoop. 4 https://bugs.webkit.org/show_bug.cgi?id=180601 5 <rdar://problem/35942028> 6 7 Reviewed by JF Bastien. 8 9 * llint/LowLevelInterpreter64.asm: 10 1 11 2017-12-08 Michael Saboff <[email protected]> 2 12 -
trunk/Source/JavaScriptCore/llint/LowLevelInterpreter64.asm
r225659 r225697 2077 2077 checkStackPointerAlignment(t3, 0xdead0001) 2078 2078 if C_LOOP 2079 cloopCallNative executableOffsetToFunction[t1] 2079 loadp _g_nativeCodePoison, t2 2080 xorp executableOffsetToFunction[t1], t2 2081 cloopCallNative t2 2080 2082 else 2081 2083 if X86_64_WIN … … 2118 2120 checkStackPointerAlignment(t3, 0xdead0001) 2119 2121 if C_LOOP 2120 cloopCallNative offsetOfFunction[t1] 2122 loadp _g_nativeCodePoison, t2 2123 xorp offsetOfFunction[t1], t2 2124 cloopCallNative t2 2121 2125 else 2122 2126 if X86_64_WIN
Note:
See TracChangeset
for help on using the changeset viewer.