hotspot/src/share/vm/code/location.hpp
author jrose
Wed, 02 Apr 2008 12:09:59 -0700
changeset 347 df859fcca515
parent 1 489c9b5090e2
child 1135 9487203e5789
permissions -rw-r--r--
6667042: PrintAssembly option does not work without special plugin Summary: remove old private plugin interface, simplify, rework old plugin to use unchanged Gnu sources Reviewed-by: kvn, rasbold
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1997-2006 Sun Microsystems, Inc.  All Rights Reserved.
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
// A Location describes a concrete machine variable location
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
// (such as integer or floating point register or a stack-held
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
// variable). Used when generating debug-information for nmethods.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
// Encoding:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// bits:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//  Where:  [15]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
//  Type:   [14..12]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//  Offset: [11..0]
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
class Location VALUE_OBJ_CLASS_SPEC {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  friend class VMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
  enum Where {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
    on_stack,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    in_register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  enum Type {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    normal,                     // Ints, floats, double halves
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    oop,                        // Oop (please GC me!)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    int_in_long,                // Integer held in long register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    lng,                        // Long held in one register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    float_in_dbl,               // Float held in double register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    dbl,                        // Double held in one register
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    addr,                       // JSR return address
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    invalid                     // Invalid location
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
 private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    OFFSET_MASK  = (jchar) 0x0FFF,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
    OFFSET_SHIFT = 0,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
    TYPE_MASK    = (jchar) 0x7000,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    TYPE_SHIFT   = 12,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    WHERE_MASK   = (jchar) 0x8000,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    WHERE_SHIFT  = 15
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  uint16_t _value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // Create a bit-packed Location
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  Location(Where where_, Type type_, unsigned offset_) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
    set(where_, type_, offset_);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
    assert( where () == where_ , "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
    assert( type  () == type_  , "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    assert( offset() == offset_, "" );
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  inline void set(Where where_, Type type_, unsigned offset_) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
    _value = (uint16_t) ((where_  << WHERE_SHIFT) |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
                         (type_   << TYPE_SHIFT)  |
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
                         ((offset_ << OFFSET_SHIFT) & OFFSET_MASK));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  // Stack location Factory.  Offset is 4-byte aligned; remove low bits
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  static Location new_stk_loc( Type t, int offset ) { return Location(on_stack,t,offset>>LogBytesPerInt); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  // Register location Factory
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  static Location new_reg_loc( Type t, VMReg reg ) { return Location(in_register, t, reg->value()); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  // Default constructor
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  Location() { set(on_stack,invalid,(unsigned) -1); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // Bit field accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  Where where()  const { return (Where)       ((_value & WHERE_MASK)  >> WHERE_SHIFT);}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  Type  type()   const { return (Type)        ((_value & TYPE_MASK)   >> TYPE_SHIFT); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  unsigned offset() const { return (unsigned) ((_value & OFFSET_MASK) >> OFFSET_SHIFT); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  // Accessors
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  bool is_register() const    { return where() == in_register; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  bool is_stack() const       { return where() == on_stack;    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
  int stack_offset() const    { assert(where() == on_stack,    "wrong Where"); return offset()<<LogBytesPerInt; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  int register_number() const { assert(where() == in_register, "wrong Where"); return offset()   ; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  VMReg reg() const { assert(where() == in_register, "wrong Where"); return VMRegImpl::as_VMReg(offset())   ; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  // Printing
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  void print_on(outputStream* st) const;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Serialization of debugging information
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  Location(DebugInfoReadStream* stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  void write_on(DebugInfoWriteStream* stream);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // check
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  static bool legal_offset_in_bytes(int offset_in_bytes);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
};