Title: [257424] releases/WebKitGTK/webkit-2.28/Source/_javascript_Core
Revision
257424
Author
[email protected]
Date
2020-02-26 02:55:30 -0800 (Wed, 26 Feb 2020)

Log Message

Merge r256718 - Remove nonArgGPR1 for ARMv7 and ARM64 (unused)
https://bugs.webkit.org/show_bug.cgi?id=207753

Patch by Paulo Matos <[email protected]> on 2020-02-16
Reviewed by Darin Adler.

Cleanup commit - nonArgGPR1 is unused for both ARMv7
and ARM64.

* jit/GPRInfo.h:

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.28/Source/_javascript_Core/ChangeLog (257423 => 257424)


--- releases/WebKitGTK/webkit-2.28/Source/_javascript_Core/ChangeLog	2020-02-26 10:55:25 UTC (rev 257423)
+++ releases/WebKitGTK/webkit-2.28/Source/_javascript_Core/ChangeLog	2020-02-26 10:55:30 UTC (rev 257424)
@@ -1,3 +1,15 @@
+2020-02-16  Paulo Matos  <[email protected]>
+
+        Remove nonArgGPR1 for ARMv7 and ARM64 (unused)
+        https://bugs.webkit.org/show_bug.cgi?id=207753
+
+        Reviewed by Darin Adler.
+
+        Cleanup commit - nonArgGPR1 is unused for both ARMv7
+        and ARM64.
+
+        * jit/GPRInfo.h:
+
 2020-02-13  Caio Lima  <[email protected]>
 
         [ESNext][BigInt] We don't support BigInt literal as PropertyName

Modified: releases/WebKitGTK/webkit-2.28/Source/_javascript_Core/jit/GPRInfo.h (257423 => 257424)


--- releases/WebKitGTK/webkit-2.28/Source/_javascript_Core/jit/GPRInfo.h	2020-02-26 10:55:25 UTC (rev 257423)
+++ releases/WebKitGTK/webkit-2.28/Source/_javascript_Core/jit/GPRInfo.h	2020-02-26 10:55:30 UTC (rev 257424)
@@ -555,7 +555,6 @@
     static constexpr GPRReg argumentGPR2 = ARMRegisters::r2; // regT2
     static constexpr GPRReg argumentGPR3 = ARMRegisters::r3; // regT3
     static constexpr GPRReg nonArgGPR0 = ARMRegisters::r4; // regT7
-    static constexpr GPRReg nonArgGPR1 = ARMRegisters::r8; // regT4
     static constexpr GPRReg returnValueGPR = ARMRegisters::r0; // regT0
     static constexpr GPRReg returnValueGPR2 = ARMRegisters::r1; // regT1
     static constexpr GPRReg nonPreservedNonReturnGPR = ARMRegisters::r5;
@@ -649,7 +648,6 @@
     static constexpr GPRReg argumentGPR6 = ARM64Registers::x6; // regT6
     static constexpr GPRReg argumentGPR7 = ARM64Registers::x7; // regT7
     static constexpr GPRReg nonArgGPR0 = ARM64Registers::x8; // regT8
-    static constexpr GPRReg nonArgGPR1 = ARM64Registers::x9; // regT9
     static constexpr GPRReg returnValueGPR = ARM64Registers::x0; // regT0
     static constexpr GPRReg returnValueGPR2 = ARM64Registers::x1; // regT1
     static constexpr GPRReg nonPreservedNonReturnGPR = ARM64Registers::x2;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to