< prev index next >

src/hotspot/cpu/s390/c1_LIRAssembler_s390.cpp

Print this page




  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 #include "precompiled.hpp"
  27 #include "c1/c1_Compilation.hpp"
  28 #include "c1/c1_LIRAssembler.hpp"
  29 #include "c1/c1_MacroAssembler.hpp"
  30 #include "c1/c1_Runtime1.hpp"
  31 #include "c1/c1_ValueStack.hpp"
  32 #include "ci/ciArrayKlass.hpp"
  33 #include "ci/ciInstance.hpp"
  34 #include "gc/shared/collectedHeap.hpp"
  35 #include "gc/shared/barrierSet.hpp"
  36 #include "gc/shared/cardTableBarrierSet.hpp"
  37 #include "nativeInst_s390.hpp"
  38 #include "oops/objArrayKlass.hpp"

  39 #include "runtime/safepointMechanism.inline.hpp"
  40 #include "runtime/sharedRuntime.hpp"
  41 #include "vmreg_s390.inline.hpp"
  42 
  43 #define __ _masm->
  44 
  45 #ifndef PRODUCT
  46 #undef __
  47 #define __ (Verbose ? (_masm->block_comment(FILE_AND_LINE),_masm) : _masm)->
  48 #endif
  49 
  50 //------------------------------------------------------------
  51 
  52 bool LIR_Assembler::is_small_constant(LIR_Opr opr) {
  53   // Not used on ZARCH_64
  54   ShouldNotCallThis();
  55   return false;
  56 }
  57 
  58 LIR_Opr LIR_Assembler::receiverOpr() {




  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 #include "precompiled.hpp"
  27 #include "c1/c1_Compilation.hpp"
  28 #include "c1/c1_LIRAssembler.hpp"
  29 #include "c1/c1_MacroAssembler.hpp"
  30 #include "c1/c1_Runtime1.hpp"
  31 #include "c1/c1_ValueStack.hpp"
  32 #include "ci/ciArrayKlass.hpp"
  33 #include "ci/ciInstance.hpp"
  34 #include "gc/shared/collectedHeap.hpp"
  35 #include "gc/shared/barrierSet.hpp"
  36 #include "gc/shared/cardTableBarrierSet.hpp"
  37 #include "nativeInst_s390.hpp"
  38 #include "oops/objArrayKlass.hpp"
  39 #include "runtime/frame.inline.hpp"
  40 #include "runtime/safepointMechanism.inline.hpp"
  41 #include "runtime/sharedRuntime.hpp"
  42 #include "vmreg_s390.inline.hpp"
  43 
  44 #define __ _masm->
  45 
  46 #ifndef PRODUCT
  47 #undef __
  48 #define __ (Verbose ? (_masm->block_comment(FILE_AND_LINE),_masm) : _masm)->
  49 #endif
  50 
  51 //------------------------------------------------------------
  52 
  53 bool LIR_Assembler::is_small_constant(LIR_Opr opr) {
  54   // Not used on ZARCH_64
  55   ShouldNotCallThis();
  56   return false;
  57 }
  58 
  59 LIR_Opr LIR_Assembler::receiverOpr() {


< prev index next >