Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8281685 | 11.0.16-oracle | Fairoz Matte | P2 | Closed | Fixed | b01 |
JDK-8281832 | 11.0.15 | Vladimir Kempik | P2 | Resolved | Fixed | b02 |
JDK-8294163 | 8u361 | Fairoz Matte | P2 | Resolved | Fixed | b01 |
https://developer.apple.com/documentation/apple_silicon/addressing_architectural_differences_in_your_macos_code?language=objc
The C++ ABI for Apple silicon matches the ABI for iOS devices, and not the ABI for Intel-based Mac computers. For information about the ABI, see iOS ABI Function Call Guide.
https://developer.apple.com/library/archive/documentation/Xcode/Conceptual/iPhoneOSABIReference/Articles/ARM64FunctionCallingConventions.html
In the generic procedure call standard, all function arguments passed on the stack consume slots in multiples of 8 bytes. In iOS, this requirement is dropped, and values consume only the space required. For example, on entry to the function in Listing 1, s0 occupies 1 byte at sp and s1 occupies 1 byte at sp+1. Padding is still inserted on the stack to satisfy arguments’ alignment requirements
This Jira sub-task tracks implementation for interpreter.
The C++ ABI for Apple silicon matches the ABI for iOS devices, and not the ABI for Intel-based Mac computers. For information about the ABI, see iOS ABI Function Call Guide.
https://developer.apple.com/library/archive/documentation/Xcode/Conceptual/iPhoneOSABIReference/Articles/ARM64FunctionCallingConventions.html
In the generic procedure call standard, all function arguments passed on the stack consume slots in multiples of 8 bytes. In iOS, this requirement is dropped, and values consume only the space required. For example, on entry to the function in Listing 1, s0 occupies 1 byte at sp and s1 occupies 1 byte at sp+1. Padding is still inserted on the stack to satisfy arguments’ alignment requirements
This Jira sub-task tracks implementation for interpreter.
- backported by
-
JDK-8281832 Support macOS Aarch64 ABI in Interpreter
-
- Resolved
-
-
JDK-8294163 Support macOS Aarch64 ABI in Interpreter
-
- Resolved
-
-
JDK-8281685 Support macOS Aarch64 ABI in Interpreter
-
- Closed
-
- links to
-
Commit openjdk/jdk11u-dev/eb0708f7
-
Commit openjdk/jdk/dbc9e4b5
-
Review openjdk/jdk11u-dev/715
-
Review openjdk/jdk/2200
(2 links to)