hotspot/src/cpu/x86/vm/c1_MacroAssembler_x86.hpp
author kvn
Fri, 07 Nov 2008 09:29:38 -0800
changeset 1500 bea9a90f3e8f
parent 1217 5eb97f366a6a
child 5547 f4b087cbb361
permissions -rw-r--r--
6462850: generate biased locking code in C2 ideal graph Summary: Inline biased locking code in C2 ideal graph during macro nodes expansion Reviewed-by: never
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
1217
5eb97f366a6a 6754988: Update copyright year
xdono
parents: 1066
diff changeset
     2
 * Copyright 1999-2008 Sun Microsystems, Inc.  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
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
// C1_MacroAssembler contains high-level macros for C1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
  int _rsp_offset;    // track rsp changes
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
  // initialization
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  void pd_init() { _rsp_offset = 0; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  void try_allocate(
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
    Register obj,                      // result: pointer to object after successful allocation
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
    Register var_size_in_bytes,        // object size in bytes if unknown at compile time; invalid otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
    int      con_size_in_bytes,        // object size in bytes if   known at compile time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
    Register t1,                       // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
    Register t2,                       // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    Label&   slow_case                 // continuation point if fast allocation fails
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  void initialize_header(Register obj, Register klass, Register len, Register t1, Register t2);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  void initialize_body(Register obj, Register len_in_bytes, int hdr_size_in_bytes, Register t1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  // locking
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  // hdr     : must be rax, contents destroyed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
  // obj     : must point to the object to lock, contents preserved
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
  // disp_hdr: must point to the displaced header location, contents preserved
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
  // scratch : scratch register, contents destroyed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  // returns code offset at which to add null check debug information
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  int lock_object  (Register swap, Register obj, Register disp_hdr, Register scratch, Label& slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  // unlocking
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  // hdr     : contents destroyed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  // obj     : must point to the object to lock, contents preserved
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  // disp_hdr: must be eax & must point to the displaced header location, contents destroyed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  void unlock_object(Register swap, Register obj, Register lock, Label& slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  void initialize_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 klass,                    // object klass
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    Register var_size_in_bytes,        // object size in bytes if unknown at compile time; invalid otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    int      con_size_in_bytes,        // object size in bytes if   known at compile time
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    Register t1,                       // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    Register t2                        // temp register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // allocation of fixed-size objects
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // (can also be used to allocate fixed-size arrays, by setting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  // hdr_size correctly and storing the array length afterwards)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // obj        : must be rax, will contain pointer to allocated object
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // t1, t2     : scratch registers - contents destroyed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // header_size: size of object header in words
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // object_size: total size of object in words
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  // slow_case  : exit to slow case implementation if fast allocation fails
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  void allocate_object(Register obj, Register t1, Register t2, int header_size, int object_size, Register klass, Label& slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    max_array_allocation_length = 0x00FFFFFF
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  // allocation of arrays
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  // obj        : must be rax, will contain pointer to allocated object
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // len        : array length in number of elements
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  // t          : scratch register - contents destroyed
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // header_size: size of object header in words
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  // f          : element scale factor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // slow_case  : exit to slow case implementation if fast allocation fails
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  void allocate_array(Register obj, Register len, Register t, Register t2, int header_size, Address::ScaleFactor f, Register klass, Label& slow_case);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  int  rsp_offset() const { return _rsp_offset; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  void set_rsp_offset(int n) { _rsp_offset = n; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  // Note: NEVER push values directly, but only through following push_xxx functions;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  //       This helps us to track the rsp changes compared to the entry rsp (->_rsp_offset)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    97
  void push_jint (jint i)     { _rsp_offset++; push(i); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  void push_oop  (jobject o)  { _rsp_offset++; pushoop(o); }
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
    99
  // Seems to always be in wordSize
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   100
  void push_addr (Address a)  { _rsp_offset++; pushptr(a); }
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   101
  void push_reg  (Register r) { _rsp_offset++; push(r); }
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   102
  void pop_reg   (Register r) { _rsp_offset--; pop(r); assert(_rsp_offset >= 0, "stack offset underflow"); }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  void dec_stack (int nof_words) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    _rsp_offset -= nof_words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    assert(_rsp_offset >= 0, "stack offset underflow");
1066
717c3345024f 5108146: Merge i486 and amd64 cpu directories
never
parents: 1
diff changeset
   107
    addptr(rsp, wordSize * nof_words);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  void dec_stack_after_call (int nof_words) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
    _rsp_offset -= nof_words;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
    assert(_rsp_offset >= 0, "stack offset underflow");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  void invalidate_registers(bool inv_rax, bool inv_rbx, bool inv_rcx, bool inv_rdx, bool inv_rsi, bool inv_rdi) PRODUCT_RETURN;