hotspot/src/cpu/sparc/vm/c1_MacroAssembler_sparc.hpp
author mdoerr
Mon, 23 Nov 2015 11:06:14 +0100
changeset 34220 1ba69cb5585c
parent 7724 a92d706dbdd5
child 35548 8d3afe96ffea
permissions -rw-r--r--
8138952: C1: Distinguish between PPC32 and PPC64 Reviewed-by: twisti, goetz, vlivanov
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
34220
1ba69cb5585c 8138952: C1: Distinguish between PPC32 and PPC64
mdoerr
parents: 7724
diff changeset
     2
 * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#ifndef CPU_SPARC_VM_C1_MACROASSEMBLER_SPARC_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#define CPU_SPARC_VM_C1_MACROASSEMBLER_SPARC_HPP
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
  void pd_init() { /* nothing to do */ }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
   void try_allocate(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
    Register obj,                      // result: pointer to object after successful allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
    Register var_size_in_bytes,        // object size in bytes if unknown at compile time; invalid otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
    int      con_size_in_bytes,        // object size in bytes if   known at compile time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
    Register t1,                       // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
    Register t2,                       // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    Label&   slow_case                 // continuation point if fast allocation fails
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  void initialize_header(Register obj, Register klass, Register len, Register t1, Register t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  void initialize_body(Register base, Register index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  // locking/unlocking
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  void lock_object  (Register Rmark, Register Roop, Register Rbox, Register Rscratch, Label& slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  void unlock_object(Register Rmark, Register Roop, Register Rbox,                    Label& slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  void initialize_object(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    Register obj,                      // result: pointer to object after successful allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    Register klass,                    // object klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    Register var_size_in_bytes,        // object size in bytes if unknown at compile time; invalid otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    int      con_size_in_bytes,        // object size in bytes if   known at compile time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    Register t1,                       // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    Register t2                        // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // allocation of fixed-size objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  // (can also be used to allocate fixed-size arrays, by setting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // hdr_size correctly and storing the array length afterwards)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  void allocate_object(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    Register obj,                      // result: pointer to object after successful allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    Register t1,                       // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    Register t2,                       // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    Register t3,                       // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    int      hdr_size,                 // object header size in words
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    int      obj_size,                 // object size in words
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    Register klass,                    // object klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    Label&   slow_case                 // continuation point if fast allocation fails
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    max_array_allocation_length = 0x01000000 // sparc friendly value, requires sethi only
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // allocation of arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  void allocate_array(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
    Register obj,                      // result: pointer to array after successful allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    Register len,                      // array length
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
    Register t1,                       // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    Register t2,                       // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
    Register t3,                       // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
    int      hdr_size,                 // object header size in words
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
    int      elt_size,                 // element size in bytes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
    Register klass,                    // object klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
    Label&   slow_case                 // continuation point if fast allocation fails
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // invalidates registers in this window
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  void invalidate_registers(bool iregisters, bool lregisters, bool oregisters,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                            Register preserve1 = noreg, Register preserve2 = noreg);
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    90
34220
1ba69cb5585c 8138952: C1: Distinguish between PPC32 and PPC64
mdoerr
parents: 7724
diff changeset
    91
  // This platform only uses signal-based null checks. The Label is not needed.
1ba69cb5585c 8138952: C1: Distinguish between PPC32 and PPC64
mdoerr
parents: 7724
diff changeset
    92
  void null_check(Register r, Label *Lnull = NULL) { MacroAssembler::null_check(r); }
1ba69cb5585c 8138952: C1: Distinguish between PPC32 and PPC64
mdoerr
parents: 7724
diff changeset
    93
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    94
#endif // CPU_SPARC_VM_C1_MACROASSEMBLER_SPARC_HPP