src/os_cpu/solaris_x86/vm/solaris_x86_64.ad
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File 7145346 Sdiff src/os_cpu/solaris_x86/vm

src/os_cpu/solaris_x86/vm/solaris_x86_64.ad

Print this page


   1 //
   2 // Copyright (c) 2004, 2006, 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 //


  38 // four functions which return the Base Register, the Index Register,
  39 // the Scale Value, and the Offset Value of the operand when queried.
  40 // COND_INTER causes an operand to generate six functions which return
  41 // the encoding code (ie - encoding bits for the instruction)
  42 // associated with each basic boolean condition for a conditional
  43 // instruction.  Instructions specify two basic values for encoding.
  44 // They use the ins_encode keyword to specify their encoding class
  45 // (which must be one of the class names specified in the encoding
  46 // block), and they use the opcode keyword to specify, in order, their
  47 // primary, secondary, and tertiary opcode.  Only the opcode sections
  48 // which a particular instruction needs for encoding need to be
  49 // specified.
  50 encode %{
  51   // Build emit functions for each basic byte or larger field in the intel
  52   // encoding scheme (opcode, rm, sib, immediate), and call them from C++
  53   // code in the enc_class source block.  Emit functions will live in the
  54   // main source block for now.  In future, we can generalize this by
  55   // adding a syntax that specifies the sizes of fields in an order,
  56   // so that the adlc can build the emit functions automagically
  57 
  58   enc_class Java_To_Runtime(method meth)
  59   %{
  60     // No relocation needed
  61 
  62     // movq r10, <meth>
  63     emit_opcode(cbuf, Assembler::REX_WB);
  64     emit_opcode(cbuf, 0xB8 | (R10_enc - 8));
  65     emit_d64(cbuf, (int64_t) $meth$$method);
  66 
  67     // call (r10)
  68     emit_opcode(cbuf, Assembler::REX_B);
  69     emit_opcode(cbuf, 0xFF);
  70     emit_opcode(cbuf, 0xD0 | (R10_enc - 8));
  71   %}
  72 
  73   enc_class solaris_breakpoint
  74   %{
  75     MacroAssembler* masm = new MacroAssembler(&cbuf);
  76     masm->call(RuntimeAddress(CAST_FROM_FN_PTR(address, os::breakpoint)));
  77   %}
  78 
  79   enc_class call_epilog
  80   %{
  81     if (VerifyStackAtCalls) {
  82       // Check that stack depth is unchanged: find majik cookie on stack
  83       int framesize =
  84         ra_->reg2offset_unchecked(OptoReg::add(ra_->_matcher._old_SP, -3*VMRegImpl::slots_per_word));
  85       if (framesize) {
  86         if (framesize < 0x80) {
  87           emit_opcode(cbuf, Assembler::REX_W);
  88           emit_opcode(cbuf, 0x81); // cmpq [rsp+0],0xbadb1ood
  89           emit_d8(cbuf, 0x7C);
  90           emit_d8(cbuf, 0x24);
  91           emit_d8(cbuf, framesize); // Find majik cookie from ESP
  92           emit_d32(cbuf, 0xbadb100d);
  93         } else {
  94           emit_opcode(cbuf, Assembler::REX_W);
  95           emit_opcode(cbuf, 0x81); // cmpq [rsp+0],0xbadb1ood
  96           emit_d8(cbuf, 0xBC);
  97           emit_d8(cbuf, 0x24);
  98           emit_d32(cbuf, framesize); // Find majik cookie from ESP
  99           emit_d32(cbuf, 0xbadb100d);
 100         }
 101       }
 102       // jmp EQ around INT3
 103       // QQQ TODO
 104       const int jump_around = 5; // size of call to breakpoint, 1 for CC
 105       emit_opcode(cbuf, 0x74);
 106       emit_d8(cbuf, jump_around);
 107       // QQQ temporary
 108       emit_break(cbuf);
 109       // Die if stack mismatch
 110       // emit_opcode(cbuf,0xCC);
 111     }
 112   %}
 113 
 114   enc_class post_call_verify_mxcsr %{
 115     MacroAssembler masm(&cbuf);
 116     if (RestoreMXCSROnJNICalls) {
 117       masm.ldmxcsr(ExternalAddress(StubRoutines::amd64::mxcsr_std()));
 118     }
 119     else if (CheckJNICalls) {
 120       masm.call(RuntimeAddress(CAST_FROM_FN_PTR(address, StubRoutines::amd64::verify_mxcsr_entry())));
 121     }
 122   %}
 123 %}
 124 
 125 // INSTRUCTIONS -- Platform dependent
 126 
 127 //----------OS and Locking Instructions----------------------------------------
 128 
 129 // This name is KNOWN by the ADLC and cannot be changed.
 130 // The ADLC forces a 'TypeRawPtr::BOTTOM' output type
 131 // for this guy.
 132 instruct tlsLoadP(r15_RegP dst)
 133 %{
 134   match(Set dst (ThreadLocal));
 135   effect(DEF dst);
 136 
 137   size(0);
 138   format %{ "# TLS is in R15" %}
 139   ins_encode( /*empty encoding*/ );
 140   ins_pipe(ialu_reg_reg);
 141 %}
 142 
 143 // Die now
 144 instruct ShouldNotReachHere()
 145 %{
 146   match(Halt);
 147 
 148   // Use the following format syntax
 149   format %{ "int3\t# ShouldNotReachHere" %}
 150   // QQQ TODO for now call breakpoint
 151   // opcode(0xCC);
 152   // ins_encode(Opc);
 153   ins_encode(solaris_breakpoint);
 154   ins_pipe(pipe_slow);
 155 %}
 156 
 157 
 158 // Platform dependent source
 159 
 160 source
 161 %{
 162 
 163 int MachCallRuntimeNode::ret_addr_offset()
 164 {
 165   return 13; // movq r10,#addr; callq (r10)
 166 }
 167 
 168 // emit an interrupt that is caught by the debugger
 169 void emit_break(CodeBuffer& cbuf)
 170 {
 171   // Debugger doesn't really catch this but best we can do so far QQQ
 172   MacroAssembler* masm = new MacroAssembler(&cbuf);
 173   masm->call(RuntimeAddress(CAST_FROM_FN_PTR(address, os::breakpoint)));
 174 }
 175 
 176 void MachBreakpointNode::emit(CodeBuffer& cbuf, PhaseRegAlloc* ra_) const
 177 {
 178   emit_break(cbuf);
 179 }
 180 
 181 uint MachBreakpointNode::size(PhaseRegAlloc* ra_) const
 182 {
 183   // distance could be far and requires load and call through register
 184   return MachNode::size(ra_);
 185 }
 186 
 187 %}
   1 //
   2 // Copyright (c) 2004, 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 //


  38 // four functions which return the Base Register, the Index Register,
  39 // the Scale Value, and the Offset Value of the operand when queried.
  40 // COND_INTER causes an operand to generate six functions which return
  41 // the encoding code (ie - encoding bits for the instruction)
  42 // associated with each basic boolean condition for a conditional
  43 // instruction.  Instructions specify two basic values for encoding.
  44 // They use the ins_encode keyword to specify their encoding class
  45 // (which must be one of the class names specified in the encoding
  46 // block), and they use the opcode keyword to specify, in order, their
  47 // primary, secondary, and tertiary opcode.  Only the opcode sections
  48 // which a particular instruction needs for encoding need to be
  49 // specified.
  50 encode %{
  51   // Build emit functions for each basic byte or larger field in the intel
  52   // encoding scheme (opcode, rm, sib, immediate), and call them from C++
  53   // code in the enc_class source block.  Emit functions will live in the
  54   // main source block for now.  In future, we can generalize this by
  55   // adding a syntax that specifies the sizes of fields in an order,
  56   // so that the adlc can build the emit functions automagically
  57 
  58   enc_class Java_To_Runtime(method meth) %{

  59     // No relocation needed
  60 
  61     // movq r10, <meth>
  62     emit_opcode(cbuf, Assembler::REX_WB);
  63     emit_opcode(cbuf, 0xB8 | (R10_enc - 8));
  64     emit_d64(cbuf, (int64_t) $meth$$method);
  65 
  66     // call (r10)
  67     emit_opcode(cbuf, Assembler::REX_B);
  68     emit_opcode(cbuf, 0xFF);
  69     emit_opcode(cbuf, 0xD0 | (R10_enc - 8));
  70   %}
  71 









































  72   enc_class post_call_verify_mxcsr %{
  73     MacroAssembler _masm(&cbuf);
  74     if (RestoreMXCSROnJNICalls) {
  75       __ ldmxcsr(ExternalAddress(StubRoutines::amd64::mxcsr_std()));
  76     }
  77     else if (CheckJNICalls) {
  78       __ call(RuntimeAddress(CAST_FROM_FN_PTR(address, StubRoutines::amd64::verify_mxcsr_entry())));
  79     }
  80   %}
  81 %}
  82 

  83 































  84 // Platform dependent source
  85 
  86 source %{

  87 
  88 int MachCallRuntimeNode::ret_addr_offset() {

  89   return 13; // movq r10,#addr; callq (r10)
  90 }
  91 
  92 // emit an interrupt that is caught by the debugger
  93 void emit_break(MacroAssembler &_masm) {
  94   // __ emit_byte(0xCC);
  95   // TODO for now call breakpoint instead of INT3.
  96   // Debugger doesn't really catch this but best we can do so far QQQ.
  97   __ call(RuntimeAddress(CAST_FROM_FN_PTR(address, os::breakpoint)));
  98 }
  99 











 100 %}
src/os_cpu/solaris_x86/vm/solaris_x86_64.ad
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File