< prev index next >

src/hotspot/cpu/s390/disassembler_s390.cpp

Print this page
rev 56779 : 8233328: fix minimal VM build on Linux s390x


  11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13  * version 2 for more details (a copy is included in the LICENSE file that
  14  * accompanied this code).
  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  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 "asm/assembler.inline.hpp"
  27 #include "asm/macroAssembler.hpp"
  28 #include "code/codeCache.hpp"
  29 #include "compiler/disassembler.hpp"
  30 #include "depChecker_s390.hpp"
  31 #include "gc/cms/concurrentMarkSweepGeneration.inline.hpp"
  32 #include "gc/cms/parOopClosures.inline.hpp"
  33 #include "gc/shared/collectedHeap.hpp"
  34 #include "gc/shared/cardTableBarrierSet.hpp"
  35 #include "gc/shared/genOopClosures.inline.hpp"
  36 #include "oops/oop.inline.hpp"
  37 #include "runtime/handles.inline.hpp"
  38 #include "runtime/stubCodeGenerator.hpp"
  39 #include "runtime/stubRoutines.hpp"
  40 #include "utilities/align.hpp"
  41 
  42 // List of all major opcodes, as of
  43 // Principles of Operation, Eleventh Edition, March 2015
  44 bool Disassembler::valid_opcodes[] =
  45 { true,  true,  false, false, true,  true,  true,  true,  // 0x00..07
  46   false, false, true,  true,  true,  true,  true,  true,  // 0x08..0f
  47   true,  true,  true,  true,  true,  true,  true,  true,  // 0x10..17
  48   true,  true,  true,  true,  true,  true,  true,  true,  // 0x18..1f
  49   true,  true,  true,  true,  true,  true,  true,  true,  // 0x20..27
  50   true,  true,  true,  true,  true,  true,  true,  true,  // 0x28..2f
  51   true,  true,  true,  true,  true,  true,  true,  true,  // 0x30..37
  52   true,  true,  true,  true,  true,  true,  true,  true,  // 0x38..3f




  11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  13  * version 2 for more details (a copy is included in the LICENSE file that
  14  * accompanied this code).
  15  *
  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  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 "asm/assembler.inline.hpp"
  27 #include "asm/macroAssembler.hpp"
  28 #include "code/codeCache.hpp"
  29 #include "compiler/disassembler.hpp"
  30 #include "depChecker_s390.hpp"


  31 #include "gc/shared/collectedHeap.hpp"
  32 #include "gc/shared/cardTableBarrierSet.hpp"
  33 #include "gc/shared/genOopClosures.inline.hpp"
  34 #include "oops/oop.inline.hpp"
  35 #include "runtime/handles.inline.hpp"
  36 #include "runtime/stubCodeGenerator.hpp"
  37 #include "runtime/stubRoutines.hpp"
  38 #include "utilities/align.hpp"
  39 
  40 // List of all major opcodes, as of
  41 // Principles of Operation, Eleventh Edition, March 2015
  42 bool Disassembler::valid_opcodes[] =
  43 { true,  true,  false, false, true,  true,  true,  true,  // 0x00..07
  44   false, false, true,  true,  true,  true,  true,  true,  // 0x08..0f
  45   true,  true,  true,  true,  true,  true,  true,  true,  // 0x10..17
  46   true,  true,  true,  true,  true,  true,  true,  true,  // 0x18..1f
  47   true,  true,  true,  true,  true,  true,  true,  true,  // 0x20..27
  48   true,  true,  true,  true,  true,  true,  true,  true,  // 0x28..2f
  49   true,  true,  true,  true,  true,  true,  true,  true,  // 0x30..37
  50   true,  true,  true,  true,  true,  true,  true,  true,  // 0x38..3f


< prev index next >