Skip to content

Commit 18e8506

Browse files
committedNov 23, 2020
8256860: S390 builds broken after JDK-8254231
Reviewed-by: stuefe
1 parent 042734c commit 18e8506

7 files changed

+146
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
/*
2+
* Copyright (c) 2020, Red Hat, Inc. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#include "precompiled.hpp"
25+
#include "prims/foreign_globals.hpp"
26+
#include "utilities/debug.hpp"
27+
28+
const ABIDescriptor ForeignGlobals::parse_abi_descriptor_impl(jobject jabi) const {
29+
Unimplemented();
30+
return {};
31+
}
32+
33+
const BufferLayout ForeignGlobals::parse_buffer_layout_impl(jobject jlayout) const {
34+
Unimplemented();
35+
return {};
36+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*
2+
* Copyright (c) 2020, Red Hat, Inc. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#ifndef CPU_S390_VM_FOREIGN_GLOBALS_S390_HPP
25+
#define CPU_S390_VM_FOREIGN_GLOBALS_S390_HPP
26+
27+
class BufferLayout {};
28+
class ABIDescriptor {};
29+
30+
#endif // CPU_S390_VM_FOREIGN_GLOBALS_S390_HPP

‎src/hotspot/cpu/s390/s390.ad

+5
Original file line numberDiff line numberDiff line change
@@ -639,6 +639,11 @@ int MachCallRuntimeNode::ret_addr_offset() {
639639
return 12 + MacroAssembler::call_far_patchable_ret_addr_offset();
640640
}
641641

642+
int MachCallNativeNode::ret_addr_offset() {
643+
Unimplemented();
644+
return -1;
645+
}
646+
642647
// Compute padding required for nodes which need alignment
643648
//
644649
// The addresses of the call instructions needs to be 4-byte aligned to

‎src/hotspot/cpu/s390/sharedRuntime_s390.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -3463,3 +3463,11 @@ extern "C"
34633463
int SpinPause() {
34643464
return 0;
34653465
}
3466+
3467+
BufferBlob* SharedRuntime::make_native_invoker(address call_target,
3468+
int shadow_space_bytes,
3469+
const GrowableArray<VMReg>& input_registers,
3470+
const GrowableArray<VMReg>& output_registers) {
3471+
Unimplemented();
3472+
return nullptr;
3473+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
* Copyright (c) 2020, Red Hat, Inc. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#include "precompiled.hpp"
25+
#include "prims/universalNativeInvoker.hpp"
26+
#include "utilities/debug.hpp"
27+
28+
address ProgrammableInvoker::generate_adapter(jobject jabi, jobject jlayout) {
29+
Unimplemented();
30+
return nullptr;
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
* Copyright (c) 2020, Red Hat, Inc. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
#include "precompiled.hpp"
25+
#include "prims/universalUpcallHandler.hpp"
26+
#include "utilities/debug.hpp"
27+
28+
address ProgrammableUpcallHandler::generate_upcall_stub(jobject rec, jobject jabi, jobject jlayout) {
29+
Unimplemented();
30+
return nullptr;
31+
}

‎src/hotspot/cpu/s390/vmreg_s390.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,8 @@ void VMRegImpl::set_regName() {
4747
regName[i] = "NON-GPR-XMM";
4848
}
4949
}
50+
51+
VMReg VMRegImpl::vmStorageToVMReg(int type, int index) {
52+
Unimplemented();
53+
return VMRegImpl::Bad();
54+
}

0 commit comments

Comments
 (0)
Please sign in to comment.