@@ -86,7 +86,7 @@ class StubGenerator: public StubCodeGenerator {
8686 // R10 - thread : Thread*
8787 //
8888 address generate_call_stub (address& return_address) {
89- // Setup a new c frame, copy java arguments, call frame manager or
89+ // Setup a new c frame, copy java arguments, call template interpreter or
9090 // native_entry, and process result.
9191
9292 StubGenStubId stub_id = StubGenStubId::call_stub_id;
@@ -215,11 +215,10 @@ class StubGenerator: public StubCodeGenerator {
215215 }
216216
217217 {
218- BLOCK_COMMENT (" Call frame manager or native entry." );
219- // Call frame manager or native entry.
218+ BLOCK_COMMENT (" Call template interpreter or native entry." );
220219 assert_different_registers (r_arg_entry, r_top_of_arguments_addr, r_arg_method, r_arg_thread);
221220
222- // Register state on entry to frame manager / native entry:
221+ // Register state on entry to template interpreter / native entry:
223222 //
224223 // tos - intptr_t* sender tos (prepushed) Lesp = (SP) + copied_arguments_offset - 8
225224 // R19_method - Method
@@ -242,7 +241,7 @@ class StubGenerator: public StubCodeGenerator {
242241
243242 // Set R15_prev_state to 0 for simplifying checks in callee.
244243 __ load_const_optimized (R25_templateTableBase, (address)Interpreter::dispatch_table ((TosState)0 ), R0);
245- // Stack on entry to frame manager / native entry:
244+ // Stack on entry to template interpreter / native entry:
246245 //
247246 // F0 [TOP_IJAVA_FRAME_ABI]
248247 // alignment (optional)
@@ -262,19 +261,18 @@ class StubGenerator: public StubCodeGenerator {
262261 __ mr (R21_sender_SP, R1_SP);
263262
264263 // Do a light-weight C-call here, r_arg_entry holds the address
265- // of the interpreter entry point (frame manager or native entry)
264+ // of the interpreter entry point (template interpreter or native entry)
266265 // and save runtime-value of LR in return_address.
267266 assert (r_arg_entry != tos && r_arg_entry != R19_method && r_arg_entry != R16_thread,
268267 " trashed r_arg_entry" );
269268 return_address = __ call_stub (r_arg_entry);
270269 }
271270
272271 {
273- BLOCK_COMMENT (" Returned from frame manager or native entry." );
274- // Returned from frame manager or native entry.
272+ BLOCK_COMMENT (" Returned from template interpreter or native entry." );
275273 // Now pop frame, process result, and return to caller.
276274
277- // Stack on exit from frame manager / native entry:
275+ // Stack on exit from template interpreter / native entry:
278276 //
279277 // F0 [ABI]
280278 // ...
@@ -295,7 +293,7 @@ class StubGenerator: public StubCodeGenerator {
295293 Register r_cr = R12_scratch2;
296294
297295 // Reload some volatile registers which we've spilled before the call
298- // to frame manager / native entry.
296+ // to template interpreter / native entry.
299297 // Access all locals via frame pointer, because we know nothing about
300298 // the topmost frame's size.
301299 __ ld (r_entryframe_fp, _abi0 (callers_sp), R1_SP); // restore after call
0 commit comments