src/share/vm/runtime/frame.inline.hpp

changeset 2314
f95d63e2154a
parent 1907
c18cbe5936b8
child 2508
b92c45f2bc75
     1.1 --- a/src/share/vm/runtime/frame.inline.hpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/runtime/frame.inline.hpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2006, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -22,6 +22,33 @@
    1.11   *
    1.12   */
    1.13  
    1.14 +#ifndef SHARE_VM_RUNTIME_FRAME_INLINE_HPP
    1.15 +#define SHARE_VM_RUNTIME_FRAME_INLINE_HPP
    1.16 +
    1.17 +#include "interpreter/bytecodeInterpreter.hpp"
    1.18 +#include "interpreter/bytecodeInterpreter.inline.hpp"
    1.19 +#include "interpreter/interpreter.hpp"
    1.20 +#include "oops/methodOop.hpp"
    1.21 +#include "runtime/frame.hpp"
    1.22 +#include "runtime/signature.hpp"
    1.23 +#ifdef TARGET_ARCH_x86
    1.24 +# include "jniTypes_x86.hpp"
    1.25 +#endif
    1.26 +#ifdef TARGET_ARCH_sparc
    1.27 +# include "jniTypes_sparc.hpp"
    1.28 +#endif
    1.29 +#ifdef TARGET_ARCH_zero
    1.30 +# include "jniTypes_zero.hpp"
    1.31 +#endif
    1.32 +#ifdef ZERO
    1.33 +#ifdef TARGET_ARCH_zero
    1.34 +# include "entryFrame_zero.hpp"
    1.35 +# include "fakeStubFrame_zero.hpp"
    1.36 +# include "interpreterFrame_zero.hpp"
    1.37 +# include "sharkFrame_zero.hpp"
    1.38 +#endif
    1.39 +#endif
    1.40 +
    1.41  // This file holds platform-independent bodies of inline functions for frames.
    1.42  
    1.43  // Note: The bcx usually contains the bcp; however during GC it contains the bci
    1.44 @@ -52,4 +79,15 @@
    1.45  
    1.46  // here are the platform-dependent bodies:
    1.47  
    1.48 -# include "incls/_frame_pd.inline.hpp.incl"
    1.49 +#ifdef TARGET_ARCH_x86
    1.50 +# include "frame_x86.inline.hpp"
    1.51 +#endif
    1.52 +#ifdef TARGET_ARCH_sparc
    1.53 +# include "frame_sparc.inline.hpp"
    1.54 +#endif
    1.55 +#ifdef TARGET_ARCH_zero
    1.56 +# include "frame_zero.inline.hpp"
    1.57 +#endif
    1.58 +
    1.59 +
    1.60 +#endif // SHARE_VM_RUNTIME_FRAME_INLINE_HPP

mercurial