src/cpu/sparc/vm/runtime_sparc.cpp

Tue, 03 Aug 2010 08:13:38 -0400

author
bobv
date
Tue, 03 Aug 2010 08:13:38 -0400
changeset 2036
126ea7725993
parent 1934
e9ff18c4ace7
child 2314
f95d63e2154a
permissions
-rw-r--r--

6953477: Increase portability and flexibility of building Hotspot
Summary: A collection of portability improvements including shared code support for PPC, ARM platforms, software floating point, cross compilation support and improvements in error crash detail.
Reviewed-by: phh, never, coleenp, dholmes

duke@435 1 /*
jrose@1934 2 * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
duke@435 25 #include "incls/_precompiled.incl"
duke@435 26 #include "incls/_runtime_sparc.cpp.incl"
duke@435 27
duke@435 28
duke@435 29 #define __ masm->
duke@435 30
duke@435 31 ExceptionBlob *OptoRuntime::_exception_blob;
duke@435 32
duke@435 33 //------------------------------ generate_exception_blob ---------------------------
duke@435 34 // creates exception blob at the end
duke@435 35 // Using exception blob, this code is jumped from a compiled method.
duke@435 36 // (see emit_exception_handler in sparc.ad file)
duke@435 37 //
duke@435 38 // Given an exception pc at a call we call into the runtime for the
duke@435 39 // handler in this method. This handler might merely restore state
duke@435 40 // (i.e. callee save registers) unwind the frame and jump to the
duke@435 41 // exception handler for the nmethod if there is no Java level handler
duke@435 42 // for the nmethod.
duke@435 43 //
duke@435 44 // This code is entered with a jmp.
duke@435 45 //
duke@435 46 // Arguments:
duke@435 47 // O0: exception oop
duke@435 48 // O1: exception pc
duke@435 49 //
duke@435 50 // Results:
duke@435 51 // O0: exception oop
duke@435 52 // O1: exception pc in caller or ???
duke@435 53 // destination: exception handler of caller
duke@435 54 //
duke@435 55 // Note: the exception pc MUST be at a call (precise debug information)
duke@435 56 //
duke@435 57 void OptoRuntime::generate_exception_blob() {
duke@435 58 // allocate space for code
duke@435 59 ResourceMark rm;
duke@435 60 int pad = VerifyThread ? 256 : 0;// Extra slop space for more verify code
duke@435 61
duke@435 62 // setup code generation tools
duke@435 63 // Measured 8/7/03 at 256 in 32bit debug build (no VerifyThread)
duke@435 64 // Measured 8/7/03 at 528 in 32bit debug build (VerifyThread)
duke@435 65 CodeBuffer buffer("exception_blob", 600+pad, 512);
duke@435 66 MacroAssembler* masm = new MacroAssembler(&buffer);
duke@435 67
duke@435 68 int framesize_in_bytes = __ total_frame_size_in_bytes(0);
duke@435 69 int framesize_in_words = framesize_in_bytes / wordSize;
duke@435 70 int framesize_in_slots = framesize_in_bytes / sizeof(jint);
duke@435 71
duke@435 72 Label L;
duke@435 73
duke@435 74 int start = __ offset();
duke@435 75
duke@435 76 __ verify_thread();
twisti@1162 77 __ st_ptr(Oexception, G2_thread, JavaThread::exception_oop_offset());
twisti@1162 78 __ st_ptr(Oissuing_pc, G2_thread, JavaThread::exception_pc_offset());
duke@435 79
duke@435 80 // This call does all the hard work. It checks if an exception catch
duke@435 81 // exists in the method.
duke@435 82 // If so, it returns the handler address.
duke@435 83 // If the nmethod has been deoptimized and it had a handler the handler
duke@435 84 // address is the deopt blob unpack_with_exception entry.
duke@435 85 //
duke@435 86 // If no handler exists it prepares for stack-unwinding, restoring the callee-save
duke@435 87 // registers of the frame being removed.
duke@435 88 //
duke@435 89 __ save_frame(0);
duke@435 90
duke@435 91 __ mov(G2_thread, O0);
duke@435 92 __ set_last_Java_frame(SP, noreg);
duke@435 93 __ save_thread(L7_thread_cache);
duke@435 94
duke@435 95 // This call can block at exit and nmethod can be deoptimized at that
duke@435 96 // point. If the nmethod had a catch point we would jump to the
duke@435 97 // now deoptimized catch point and fall thru the vanilla deopt
duke@435 98 // path and lose the exception
duke@435 99 // Sure would be simpler if this call didn't block!
duke@435 100 __ call(CAST_FROM_FN_PTR(address, OptoRuntime::handle_exception_C), relocInfo::runtime_call_type);
duke@435 101 __ delayed()->mov(L7_thread_cache, O0);
duke@435 102
duke@435 103 // Set an oopmap for the call site. This oopmap will only be used if we
duke@435 104 // are unwinding the stack. Hence, all locations will be dead.
duke@435 105 // Callee-saved registers will be the same as the frame above (i.e.,
duke@435 106 // handle_exception_stub), since they were restored when we got the
duke@435 107 // exception.
duke@435 108
duke@435 109 OopMapSet *oop_maps = new OopMapSet();
duke@435 110 oop_maps->add_gc_map( __ offset()-start, new OopMap(framesize_in_slots, 0));
duke@435 111
duke@435 112 __ bind(L);
duke@435 113 __ restore_thread(L7_thread_cache);
duke@435 114 __ reset_last_Java_frame();
duke@435 115
duke@435 116 __ mov(O0, G3_scratch); // Move handler address to temp
duke@435 117 __ restore();
duke@435 118
twisti@1922 119 // Restore SP from L7 if the exception PC is a MethodHandle call site.
twisti@1922 120 __ lduw(Address(G2_thread, JavaThread::is_method_handle_return_offset()), O7);
twisti@1922 121 __ tst(O7);
twisti@1922 122 __ movcc(Assembler::notZero, false, Assembler::icc, L7_mh_SP_save, SP);
twisti@1922 123
duke@435 124 // G3_scratch contains handler address
duke@435 125 // Since this may be the deopt blob we must set O7 to look like we returned
duke@435 126 // from the original pc that threw the exception
duke@435 127
twisti@1162 128 __ ld_ptr(G2_thread, JavaThread::exception_pc_offset(), O7);
duke@435 129 __ sub(O7, frame::pc_return_offset, O7);
duke@435 130
duke@435 131
duke@435 132 assert(Assembler::is_simm13(in_bytes(JavaThread::exception_oop_offset())), "exception offset overflows simm13, following ld instruction cannot be in delay slot");
twisti@1162 133 __ ld_ptr(G2_thread, JavaThread::exception_oop_offset(), Oexception); // O0
duke@435 134 #ifdef ASSERT
twisti@1162 135 __ st_ptr(G0, G2_thread, JavaThread::exception_handler_pc_offset());
twisti@1162 136 __ st_ptr(G0, G2_thread, JavaThread::exception_pc_offset());
duke@435 137 #endif
duke@435 138 __ JMP(G3_scratch, 0);
duke@435 139 // Clear the exception oop so GC no longer processes it as a root.
twisti@1162 140 __ delayed()->st_ptr(G0, G2_thread, JavaThread::exception_oop_offset());
duke@435 141
duke@435 142 // -------------
duke@435 143 // make sure all code is generated
duke@435 144 masm->flush();
duke@435 145
duke@435 146 _exception_blob = ExceptionBlob::create(&buffer, oop_maps, framesize_in_words);
duke@435 147 }

mercurial