Skip to content

Commit

Permalink
Merge pull request #9179 from Akira1Saitoh/aarch64JitCalleeSavedRegis…
Browse files Browse the repository at this point in the history
…terList

AArch64: Fix jitCalleeSavedRegisterList
  • Loading branch information
knn-k committed Apr 8, 2020
2 parents fe71875 + f347ec2 commit ef484e6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Expand Up @@ -429,7 +429,10 @@ public class JITRegMap {
0x11, /* jit_r17 */
0x12, /* jit_r18 */
0x13, /* jit_r19 */
0x14 /* jit_r20 */
0x14, /* jit_r20 */
0x1D, /* jit_r29 */
0x1E, /* jit_r30 */
0x1F /* jit_r31 */
};

jitCalleeSavedRegisterList = new int[] {
Expand Down
5 changes: 4 additions & 1 deletion runtime/util/jitregs.c
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2016, 2019 IBM Corp. and others
* Copyright (c) 2016, 2020 IBM Corp. and others
*
* This program and the accompanying materials are made available under
* the terms of the Eclipse Public License 2.0 which accompanies this
Expand Down Expand Up @@ -389,6 +389,9 @@ U_8 jitCalleeDestroyedRegisterList[] = {
0x12, /* jit_r18 */
0x13, /* jit_r19 */
0x14, /* jit_r20 */
0x1D, /* jit_r29 */
0x1E, /* jit_r30 */
0x1F /* jit_r31 */
};
U_8 jitCalleeSavedRegisterList[] = {
0x15, /* jit_r21 */
Expand Down

0 comments on commit ef484e6

Please sign in to comment.