src/hotspot/share/runtime/javaFrameAnchor.hpp
author coleenp
Thu, 10 Jan 2019 15:13:51 -0500
changeset 53244 9807daeb47c4
parent 49816 a3e79f97e86b
permissions -rw-r--r--
8216167: Update include guards to reflect correct directories Summary: Use script and some manual fixup to fix directores names in include guards. Reviewed-by: lfoltan, eosterlund, kbarrett
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49816
diff changeset
     2
 * Copyright (c) 2002, 2019, 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
 */
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    24
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49816
diff changeset
    25
#ifndef SHARE_RUNTIME_JAVAFRAMEANCHOR_HPP
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49816
diff changeset
    26
#define SHARE_RUNTIME_JAVAFRAMEANCHOR_HPP
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    27
49816
a3e79f97e86b 8200555: OopHandle should use Access API
coleenp
parents: 49480
diff changeset
    28
#include "runtime/orderAccess.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    29
#include "utilities/globalDefinitions.hpp"
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 35232
diff changeset
    30
#include "utilities/macros.hpp"
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 8921
diff changeset
    31
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
// An object for encapsulating the machine/os dependent part of a JavaThread frame state
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
class JavaThread;
49480
d7df2dd501ce 8199809: Don't include frame.inline.hpp and other.inline.hpp from .hpp files
coleenp
parents: 49364
diff changeset
    36
class MacroAssembler;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
49364
601146c66cad 8173070: Remove ValueObj class for allocation subclassing for runtime code
coleenp
parents: 47216
diff changeset
    38
class JavaFrameAnchor {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
// Too many friends...
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
friend class CallNativeDirectNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
friend class OptoRuntime;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
friend class Runtime1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
friend class StubAssembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
friend class CallRuntimeDirectNode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
friend class MacroAssembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
friend class LIR_Assembler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
friend class GraphKit;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
friend class StubGenerator;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
friend class JavaThread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
friend class frame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
friend class VMStructs;
35123
b0b89d83bcf5 8134994: use separate VMStructs databases for SA and JVMCI
twisti
parents: 29180
diff changeset
    52
friend class JVMCIVMStructs;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
friend class BytecodeInterpreter;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
friend class JavaCallWrapper;
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
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
  // Whenever _last_Java_sp != NULL other anchor fields MUST be valid!
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  // The stack may not be walkable [check with walkable() ] but the values must be valid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  // The profiler apparently depends on this.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
  //
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  intptr_t* volatile _last_Java_sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  // Whenever we call from Java to native we can not be assured that the return
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
  // address that composes the last_Java_frame will be in an accessible location
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  // so calls from Java to native store that pc (or one good enough to locate
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  // the oopmap) in the frame anchor. Since the frames that call from Java to
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  // native are never deoptimized we never need to patch the pc and so this
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
  // is acceptable.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  volatile  address _last_Java_pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  // tells whether the last Java frame is set
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  // It is important that when last_Java_sp != NULL that the rest of the frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  // anchor (including platform specific) all be valid.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  bool has_last_Java_frame() const                   { return _last_Java_sp != NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  // This is very dangerous unless sp == NULL
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  // Invalidate the anchor so that has_last_frame is false
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  // and no one should look at the other fields.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  void zap(void)                                     { _last_Java_sp = NULL; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 35232
diff changeset
    82
#include CPU_HEADER(javaFrameAnchor)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  JavaFrameAnchor()                              { clear(); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  JavaFrameAnchor(JavaFrameAnchor *src)          { copy(src); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
  void set_last_Java_pc(address pc)              { _last_Java_pc = pc; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
  // Assembly stub generation helpers
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  static ByteSize last_Java_sp_offset()          { return byte_offset_of(JavaFrameAnchor, _last_Java_sp); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  static ByteSize last_Java_pc_offset()          { return byte_offset_of(JavaFrameAnchor, _last_Java_pc); }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
};
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6176
diff changeset
    96
53244
9807daeb47c4 8216167: Update include guards to reflect correct directories
coleenp
parents: 49816
diff changeset
    97
#endif // SHARE_RUNTIME_JAVAFRAMEANCHOR_HPP