Skip to content

Commit d9071d6

Browse files
authored
Update (2023.07.12, 2nd)
31343: LA port of 8309390: [JVMCI] improve copying system properties into libgraal 31330: LA port of 8309878: Reduce inclusion of resolvedIndyEntry.hpp
1 parent 1d3da2b commit d9071d6

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

src/hotspot/cpu/loongarch/interp_masm_loongarch_64.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include "oops/markWord.hpp"
3434
#include "oops/methodData.hpp"
3535
#include "oops/method.hpp"
36+
#include "oops/resolvedIndyEntry.hpp"
3637
#include "prims/jvmtiExport.hpp"
3738
#include "prims/jvmtiThreadState.hpp"
3839
#include "runtime/basicLock.hpp"

src/hotspot/cpu/loongarch/templateInterpreterGenerator_loongarch.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
#include "oops/methodData.hpp"
3838
#include "oops/method.hpp"
3939
#include "oops/oop.inline.hpp"
40+
#include "oops/resolvedIndyEntry.hpp"
4041
#include "prims/jvmtiExport.hpp"
4142
#include "prims/jvmtiThreadState.hpp"
4243
#include "runtime/arguments.hpp"

src/hotspot/cpu/loongarch/templateTable_loongarch_64.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
#include "oops/methodData.hpp"
3636
#include "oops/objArrayKlass.hpp"
3737
#include "oops/oop.inline.hpp"
38+
#include "oops/resolvedIndyEntry.hpp"
3839
#include "prims/jvmtiExport.hpp"
3940
#include "prims/methodHandles.hpp"
4041
#include "runtime/frame.inline.hpp"

src/jdk.internal.vm.ci/share/classes/jdk/vm/ci/services/Services.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@
2020
* or visit www.oracle.com if you need additional information or have any
2121
* questions.
2222
*/
23+
24+
/*
25+
* This file has been modified by Loongson Technology in 2023. These
26+
* modifications are Copyright (c) 2023, Loongson Technology, and are made
27+
* available on the same license terms set forth above.
28+
*/
29+
2330
package jdk.vm.ci.services;
2431

2532
import java.util.ArrayList;
@@ -372,6 +379,7 @@ private static String realArch() {
372379
case ARM: return "arm";
373380
case S390: return "s390";
374381
case PPC64: return "ppc64";
382+
case LOONGARCH64: return "loongarch64";
375383
case OTHER: return "other";
376384
default: throw new InternalError("missing case for " + arch);
377385
}

0 commit comments

Comments
 (0)