Title: [275615] trunk/Source/_javascript_Core
- Revision
- 275615
- Author
- mark....@apple.com
- Date
- 2021-04-07 11:22:29 -0700 (Wed, 07 Apr 2021)
Log Message
Fix a typo in JITUncoughtExceptionAfterCall.
https://bugs.webkit.org/show_bug.cgi?id=224290
Reviewed by Keith Miller.
* assembler/AbortReason.h:
* jit/AssemblyHelpers.cpp:
(JSC::AssemblyHelpers::jitReleaseAssertNoException):
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (275614 => 275615)
--- trunk/Source/_javascript_Core/ChangeLog 2021-04-07 18:20:27 UTC (rev 275614)
+++ trunk/Source/_javascript_Core/ChangeLog 2021-04-07 18:22:29 UTC (rev 275615)
@@ -1,3 +1,14 @@
+2021-04-07 Mark Lam <mark....@apple.com>
+
+ Fix a typo in JITUncoughtExceptionAfterCall.
+ https://bugs.webkit.org/show_bug.cgi?id=224290
+
+ Reviewed by Keith Miller.
+
+ * assembler/AbortReason.h:
+ * jit/AssemblyHelpers.cpp:
+ (JSC::AssemblyHelpers::jitReleaseAssertNoException):
+
2021-04-06 Yusuke Suzuki <ysuz...@apple.com>
[JSC] WasmMemory caging should care about nullptr
Modified: trunk/Source/_javascript_Core/assembler/AbortReason.h (275614 => 275615)
--- trunk/Source/_javascript_Core/assembler/AbortReason.h 2021-04-07 18:20:27 UTC (rev 275614)
+++ trunk/Source/_javascript_Core/assembler/AbortReason.h 2021-04-07 18:22:29 UTC (rev 275615)
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2014-2020 Apple Inc. All rights reserved.
+ * Copyright (C) 2014-2021 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -65,7 +65,7 @@
JITGetByValResultIsNotEmpty = 250,
JITNotSupported = 260,
JITOffsetIsNotOutOfLine = 270,
- JITUncoughtExceptionAfterCall = 275,
+ JITUncaughtExceptionAfterCall = 275,
JITUnexpectedCallFrameSize = 277,
JITUnreasonableLoopHintJumpTarget = 280,
MacroAssemblerOops = 285,
Modified: trunk/Source/_javascript_Core/jit/AssemblyHelpers.cpp (275614 => 275615)
--- trunk/Source/_javascript_Core/jit/AssemblyHelpers.cpp 2021-04-07 18:20:27 UTC (rev 275614)
+++ trunk/Source/_javascript_Core/jit/AssemblyHelpers.cpp 2021-04-07 18:22:29 UTC (rev 275615)
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2011-2020 Apple Inc. All rights reserved.
+ * Copyright (C) 2011-2021 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -227,7 +227,7 @@
#elif USE(JSVALUE32_64)
noException = branch32(Equal, AbsoluteAddress(vm.addressOfException()), TrustedImm32(0));
#endif
- abortWithReason(JITUncoughtExceptionAfterCall);
+ abortWithReason(JITUncaughtExceptionAfterCall);
noException.link(this);
}
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes