hotspot/src/share/vm/runtime/stackValueCollection.cpp
author jwilhelm
Thu, 06 Jul 2017 01:50:26 +0200
changeset 46630 75aa3e39d02c
parent 33148 68fa8b6c4340
permissions -rw-r--r--
8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8 8182656: Make the required changes in GC code to build on OSX 10 + Xcode 8 8182657: Make the required changes in Runtime code to build on OSX 10 + Xcode 8 8182658: Make the required changes in Compiler code to build on OSX 10 + Xcode 8 Reviewed-by: jwilhelm, ehelin, phh Contributed-by: phh <hohensee@amazon.com>, jwilhelm <jesper.wilhelmsson@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 33148
diff changeset
     2
 * Copyright (c) 2001, 2017, 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
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "runtime/stackValueCollection.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
jint StackValueCollection::int_at(int slot) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
  intptr_t val =  at(slot)->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
  jint ival = *((jint*) (&val));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
  return ival;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
jlong StackValueCollection::long_at(int slot) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
  return at(slot+1)->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  union {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    jlong jl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
    jint  array[2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  } value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  // Interpreter stack is reversed in memory:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  // low memory location is in higher java local slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
  value.array[0] = at(slot+1)->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  value.array[1] = at(slot  )->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
  return value.jl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
Handle StackValueCollection::obj_at(int slot) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  return at(slot)->get_obj();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
jfloat StackValueCollection::float_at(int slot) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
  intptr_t res = at(slot)->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  return *((jfloat*) (&res));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
jdouble StackValueCollection::double_at(int slot) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  intptr_t res = at(slot+1)->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  return *((jdouble*) (&res));
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  union {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    jdouble jd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    jint    array[2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  } value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // Interpreter stack is reversed in memory:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // low memory location is in higher java local slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  value.array[0] = at(slot+1)->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  value.array[1] = at(slot  )->get_int();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  return value.jd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
void StackValueCollection::set_int_at(int slot, jint value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  intptr_t val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  *((jint*) (&val)) = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  at(slot)->set_int(val);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
void StackValueCollection::set_long_at(int slot, jlong value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  at(slot+1)->set_int(value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  union {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
    jlong jl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
    jint  array[2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  } x;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Interpreter stack is reversed in memory:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
  // low memory location is in higher java local slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  x.jl = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  at(slot+1)->set_int(x.array[0]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  at(slot+0)->set_int(x.array[1]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
void StackValueCollection::set_obj_at(int slot, Handle value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  at(slot)->set_obj(value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
void StackValueCollection::set_float_at(int slot, jfloat value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  union {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    intptr_t jd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
    jint    array[2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  } val;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // Interpreter stores 32 bit floats in first half of 64 bit word.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  val.array[0] = *(jint*)(&value);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  val.array[1] = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  at(slot)->set_int(val.jd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  at(slot)->set_int(*(jint*)(&value));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
void StackValueCollection::set_double_at(int slot, jdouble value) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
#ifdef _LP64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  at(slot+1)->set_int(*(intptr_t*)(&value));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  union {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
    jdouble jd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
    jint    array[2];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  } x;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  // Interpreter stack is reversed in memory:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  // low memory location is in higher java local slot.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
  x.jd = value;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  at(slot+1)->set_int(x.array[0]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
  at(slot+0)->set_int(x.array[1]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
void StackValueCollection::print() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  for(int index = 0; index < size(); index++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
    tty->print("\t  %2d ", index);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
    at(index)->print_on(tty);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    if( at(index  )->type() == T_INT &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
        index+1 < size() &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
        at(index+1)->type() == T_INT ) {
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 33148
diff changeset
   141
      tty->print("  " INT64_FORMAT " (long)", (int64_t)long_at(index));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
      tty->print("\t     %.15e (double)", double_at(index));
46630
75aa3e39d02c 8182299: Enable disabled clang warnings, build on OSX 10 + Xcode 8
jwilhelm
parents: 33148
diff changeset
   144
      tty->print("  " PTR64_FORMAT " (longhex)", (int64_t)long_at(index));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
#endif