1 /*
   2  * Copyright (c) 1998, 2012, Oracle and/or its affiliates. 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 
  25 #include "precompiled.hpp"
  26 #include "interpreter/interpreter.hpp"
  27 #include "interpreter/interpreterRuntime.hpp"
  28 #include "memory/allocation.inline.hpp"
  29 #include "memory/universe.inline.hpp"
  30 #include "oops/method.hpp"
  31 #include "oops/oop.inline.hpp"
  32 #include "runtime/handles.inline.hpp"
  33 #include "runtime/icache.hpp"
  34 #include "runtime/interfaceSupport.hpp"
  35 #include "runtime/signature.hpp"
  36 
  37 
  38 #define __ _masm->
  39 
  40 
  41 // Implementation of SignatureHandlerGenerator
  42 void InterpreterRuntime::SignatureHandlerGenerator::pass_int() {
  43   move(offset(), jni_offset() + 1);
  44 }
  45 
  46 void InterpreterRuntime::SignatureHandlerGenerator::pass_float() {
  47   move(offset(), jni_offset() + 1);
  48 }
  49 
  50 void InterpreterRuntime::SignatureHandlerGenerator::pass_long() {
  51    move(offset(), jni_offset() + 2);
  52    move(offset() + 1, jni_offset() + 1);
  53 }
  54 
  55 void InterpreterRuntime::SignatureHandlerGenerator::pass_object() {
  56   box (offset(), jni_offset() + 1);
  57 }
  58 
  59 void InterpreterRuntime::SignatureHandlerGenerator::pass_valuetype() {
  60   box (offset(), jni_offset() + 1);
  61 }
  62 
  63 void InterpreterRuntime::SignatureHandlerGenerator::pass_valuetype() {
  64   box (offset(), jni_offset() + 1);
  65 }
  66 
  67 void InterpreterRuntime::SignatureHandlerGenerator::move(int from_offset, int to_offset) {
  68   __ movl(temp(), Address(from(), Interpreter::local_offset_in_bytes(from_offset)));
  69   __ movl(Address(to(), to_offset * wordSize), temp());
  70 }
  71 
  72 
  73 void InterpreterRuntime::SignatureHandlerGenerator::box(int from_offset, int to_offset) {
  74   __ lea(temp(), Address(from(), Interpreter::local_offset_in_bytes(from_offset)));
  75   __ cmpptr(Address(from(), Interpreter::local_offset_in_bytes(from_offset)), (int32_t)NULL_WORD); // do not use temp() to avoid AGI
  76   Label L;
  77   __ jcc(Assembler::notZero, L);
  78   __ movptr(temp(), NULL_WORD);
  79   __ bind(L);
  80   __ movptr(Address(to(), to_offset * wordSize), temp());
  81 }
  82 
  83 
  84 void InterpreterRuntime::SignatureHandlerGenerator::generate( uint64_t fingerprint) {
  85   // generate code to handle arguments
  86   iterate(fingerprint);
  87   // return result handler
  88   __ lea(rax,
  89          ExternalAddress((address)Interpreter::result_handler(method()->result_type())));
  90   // return
  91   __ ret(0);
  92   __ flush();
  93 }
  94 
  95 
  96 Register InterpreterRuntime::SignatureHandlerGenerator::from()       { return rdi; }
  97 Register InterpreterRuntime::SignatureHandlerGenerator::to()         { return rsp; }
  98 Register InterpreterRuntime::SignatureHandlerGenerator::temp()       { return rcx; }
  99 
 100 
 101 // Implementation of SignatureHandlerLibrary
 102 
 103 void SignatureHandlerLibrary::pd_set_handler(address handler) {}
 104 
 105 class SlowSignatureHandler: public NativeSignatureIterator {
 106  private:
 107   address   _from;
 108   intptr_t* _to;
 109 
 110   virtual void pass_int() {
 111     *_to++ = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
 112     _from -= Interpreter::stackElementSize;
 113   }
 114 
 115   virtual void pass_float() {
 116     *_to++ = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
 117     _from -= Interpreter::stackElementSize;
 118   }
 119 
 120   virtual void pass_long() {
 121     _to[0] = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(1));
 122     _to[1] = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(0));
 123     _to += 2;
 124     _from -= 2*Interpreter::stackElementSize;
 125   }
 126 
 127   virtual void pass_object() {
 128     // pass address of from
 129     intptr_t from_addr = (intptr_t)(_from + Interpreter::local_offset_in_bytes(0));
 130     *_to++ = (*(intptr_t*)from_addr == 0) ? NULL_WORD : from_addr;
 131     _from -= Interpreter::stackElementSize;
 132    }
 133 
 134   virtual void pass_valuetype() {
 135     // pass address of from
 136     intptr_t from_addr = (intptr_t)(_from + Interpreter::local_offset_in_bytes(0));
 137     *_to++ = (*(intptr_t*)from_addr == 0) ? NULL_WORD : from_addr;
 138     _from -= Interpreter::stackElementSize;
 139    }
 140 
 141   virtual void pass_valuetype() {
 142     // pass address of from
 143     intptr_t from_addr = (intptr_t)(_from + Interpreter::local_offset_in_bytes(0));
 144     *_to++ = (*(intptr_t*)from_addr == 0) ? NULL_WORD : from_addr;
 145     _from -= Interpreter::stackElementSize;
 146   }
 147 
 148  public:
 149   SlowSignatureHandler(methodHandle method, address from, intptr_t* to) :
 150     NativeSignatureIterator(method) {
 151     _from = from;
 152     _to   = to + (is_static() ? 2 : 1);
 153   }
 154 };
 155 
 156 IRT_ENTRY(address, InterpreterRuntime::slow_signature_handler(JavaThread* thread, Method* method, intptr_t* from, intptr_t* to))
 157   methodHandle m(thread, (Method*)method);
 158   assert(m->is_native(), "sanity check");
 159   // handle arguments
 160   SlowSignatureHandler(m, (address)from, to + 1).iterate((uint64_t)CONST64(-1));
 161   // return result handler
 162   return Interpreter::result_handler(m->result_type());
 163 IRT_END