hotspot/src/cpu/s390/vm/metaspaceShared_s390.cpp
author duke
Wed, 05 Jul 2017 23:25:53 +0200
changeset 45075 d82c02cceb22
parent 42065 6032b31e3719
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
42065
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     1
/*
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     2
 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     3
 * Copyright (c) 2016 SAP SE. All rights reserved.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     4
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     5
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     6
 * This code is free software; you can redistribute it and/or modify it
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     7
 * under the terms of the GNU General Public License version 2 only, as
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     8
 * published by the Free Software Foundation.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
     9
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    14
 * accompanied this code).
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    15
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    19
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    22
 * questions.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    23
 *
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    24
 */
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    25
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    26
#include "precompiled.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    27
#include "asm/codeBuffer.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    28
#include "asm/macroAssembler.inline.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    29
#include "memory/metaspaceShared.hpp"
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    30
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    31
// Generate the self-patching vtable method:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    32
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    33
// This method will be called (as any other Klass virtual method) with
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    34
// the Klass itself as the first argument. Example:
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    35
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    36
//   oop obj;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    37
//   int size = obj->klass()->klass_part()->oop_size(this);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    38
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    39
// for which the virtual method call is Klass::oop_size();.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    40
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    41
// The dummy method is called with the Klass object as the first
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    42
// operand, and an object as the second argument.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    43
//
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    44
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    45
//=====================================================================
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    46
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    47
// All of the dummy methods in the vtable are essentially identical,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    48
// differing only by an ordinal constant, and they bear no releationship
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    49
// to the original method which the caller intended. Also, there needs
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    50
// to be 'vtbl_list_size' instances of the vtable in order to
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    51
// differentiate between the 'vtable_list_size' original Klass objects.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    52
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    53
#undef __
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    54
#define __ masm->
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    55
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    56
void MetaspaceShared::generate_vtable_methods(void** vtbl_list,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    57
                                              void** vtable,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    58
                                              char** md_top,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    59
                                              char* md_end,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    60
                                              char** mc_top,
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    61
                                              char* mc_end) {
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    62
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    63
  intptr_t vtable_bytes = (num_virtuals * vtbl_list_size) * sizeof(void*);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    64
  *(intptr_t *)(*md_top) = vtable_bytes;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    65
  *md_top += sizeof(intptr_t);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    66
  void** dummy_vtable = (void**)*md_top;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    67
  *vtable = dummy_vtable;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    68
  *md_top += vtable_bytes;
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    69
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    70
  // Get ready to generate dummy methods.
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    71
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    72
  CodeBuffer cb((unsigned char*)*mc_top, mc_end - *mc_top);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    73
  MacroAssembler* masm = new MacroAssembler(&cb);
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    74
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    75
  __ unimplemented();
6032b31e3719 8167673: [s390] The s390 port.
goetz
parents:
diff changeset
    76
}