Skip to content

Commit a68bdfc

Browse files
committed
cleanup
1 parent 0802348 commit a68bdfc

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

src/hotspot/cpu/s390/frame_s390.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@
410410

411411
// C2I adapter frames:
412412
//
413-
// STACK (interpreted called from compiled, on entry to frame manager):
413+
// STACK (interpreted called from compiled, on entry to template interpreter):
414414
//
415415
// [TOP_C2I_FRAME]
416416
// [JIT_FRAME]

src/hotspot/cpu/s390/register_s390.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
33
* Copyright (c) 2016, 2023 SAP SE. All rights reserved.
44
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
55
*
@@ -414,7 +414,7 @@ constexpr FloatRegister Z_FARG2 = Z_F2;
414414
constexpr FloatRegister Z_FARG3 = Z_F4;
415415
constexpr FloatRegister Z_FARG4 = Z_F6;
416416

417-
// Register declarations to be used in frame manager assembly code.
417+
// Register declarations to be used in template interpreter assembly code.
418418
// Use only non-volatile registers in order to keep values across C-calls.
419419

420420
// Register to cache the integer value on top of the operand stack.
@@ -439,7 +439,7 @@ constexpr Register Z_bcp = Z_R13;
439439
// Bytecode which is dispatched (short lived!).
440440
constexpr Register Z_bytecode = Z_R14;
441441

442-
// Temporary registers to be used within frame manager. We can use
442+
// Temporary registers to be used within template interpreter. We can use
443443
// the nonvolatile ones because the call stub has saved them.
444444
// Use only non-volatile registers in order to keep values across C-calls.
445445
constexpr Register Z_tmp_1 = Z_R10;

src/hotspot/cpu/s390/runtime_s390.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ ExceptionBlob* OptoRuntime::generate_exception_blob() {
118118
__ z_lgr(Z_SP, saved_sp);
119119

120120
// [Z_RET] isn't null was possible in hotspot5 but not in sapjvm6.
121-
// C2I adapter extensions are now removed by a resize in the frame manager
121+
// C2I adapter extensions are now removed by a resize in the template interpreter
122122
// (unwind_initial_activation_pending_exception).
123123
#ifdef ASSERT
124124
__ z_ltgr(handle_exception, handle_exception);

src/hotspot/cpu/s390/sharedRuntime_s390.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2139,7 +2139,7 @@ static address gen_c2i_adapter(MacroAssembler *masm,
21392139
Register value = Z_R12;
21402140

21412141
// Remember the senderSP so we can pop the interpreter arguments off of the stack.
2142-
// In addition, frame manager expects initial_caller_sp in Z_R10.
2142+
// In addition, template interpreter expects initial_caller_sp in Z_R10.
21432143
__ z_lgr(sender_SP, Z_SP);
21442144

21452145
// This should always fit in 14 bit immediate.

src/hotspot/cpu/s390/stubGenerator_s390.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class StubGenerator: public StubCodeGenerator {
115115
// [SP+176] - thread : Thread*
116116
//
117117
address generate_call_stub(address& return_address) {
118-
// Set up a new C frame, copy Java arguments, call frame manager
118+
// Set up a new C frame, copy Java arguments, call template interpreter
119119
// or native_entry, and process result.
120120

121121
StubGenStubId stub_id = StubGenStubId::call_stub_id;
@@ -272,10 +272,10 @@ class StubGenerator: public StubCodeGenerator {
272272

273273
BLOCK_COMMENT("call {");
274274
{
275-
// Call frame manager or native entry.
275+
// Call template interpreter or native entry.
276276

277277
//
278-
// Register state on entry to frame manager / native entry:
278+
// Register state on entry to template interpreter / native entry:
279279
//
280280
// Z_ARG1 = r_top_of_arguments_addr - intptr_t *sender tos (prepushed)
281281
// Lesp = (SP) + copied_arguments_offset - 8
@@ -290,7 +290,7 @@ class StubGenerator: public StubCodeGenerator {
290290
__ z_lgr(Z_esp, r_top_of_arguments_addr);
291291

292292
//
293-
// Stack on entry to frame manager / native entry:
293+
// Stack on entry to template interpreter / native entry:
294294
//
295295
// F0 [TOP_IJAVA_FRAME_ABI]
296296
// [outgoing Java arguments]
@@ -300,7 +300,7 @@ class StubGenerator: public StubCodeGenerator {
300300
//
301301

302302
// Do a light-weight C-call here, r_new_arg_entry holds the address
303-
// of the interpreter entry point (frame manager or native entry)
303+
// of the interpreter entry point (template interpreter or native entry)
304304
// and save runtime-value of return_pc in return_address
305305
// (call by reference argument).
306306
return_address = __ call_stub(r_new_arg_entry);
@@ -309,11 +309,11 @@ class StubGenerator: public StubCodeGenerator {
309309

310310
{
311311
BLOCK_COMMENT("restore registers {");
312-
// Returned from frame manager or native entry.
312+
// Returned from template interpreter or native entry.
313313
// Now pop frame, process result, and return to caller.
314314

315315
//
316-
// Stack on exit from frame manager / native entry:
316+
// Stack on exit from template interpreter / native entry:
317317
//
318318
// F0 [ABI]
319319
// ...
@@ -330,7 +330,7 @@ class StubGenerator: public StubCodeGenerator {
330330
__ pop_frame();
331331

332332
// Reload some volatile registers which we've spilled before the call
333-
// to frame manager / native entry.
333+
// to template interpreter / native entry.
334334
// Access all locals via frame pointer, because we know nothing about
335335
// the topmost frame's size.
336336
__ z_lg(r_arg_result_addr, result_address_offset, r_entryframe_fp);

src/hotspot/cpu/s390/templateInterpreterGenerator_s390.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1217,7 +1217,7 @@ void TemplateInterpreterGenerator::generate_fixed_frame(bool native_call) {
12171217

12181218
// Various method entries
12191219

1220-
// Math function, frame manager must set up an interpreter state, etc.
1220+
// Math function, template interpreter must set up an interpreter state, etc.
12211221
address TemplateInterpreterGenerator::generate_math_entry(AbstractInterpreter::MethodKind kind) {
12221222

12231223
// Decide what to do: Use same platform specific instructions and runtime calls as compilers.

0 commit comments

Comments
 (0)