8200302: ppc, s390 (non-pch) build errors
Reviewed-by: coleenp, lfoltan
This commit is contained in:
parent
b541d9ad77
commit
b22a2dd78a
@ -384,7 +384,7 @@
|
|||||||
|
|
||||||
// Constructors
|
// Constructors
|
||||||
inline frame(intptr_t* sp);
|
inline frame(intptr_t* sp);
|
||||||
frame(intptr_t* sp, address pc);
|
inline frame(intptr_t* sp, address pc);
|
||||||
inline frame(intptr_t* sp, address pc, intptr_t* unextended_sp);
|
inline frame(intptr_t* sp, address pc, intptr_t* unextended_sp);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -30,6 +30,7 @@
|
|||||||
#include "oops/compressedOops.inline.hpp"
|
#include "oops/compressedOops.inline.hpp"
|
||||||
#include "oops/oop.hpp"
|
#include "oops/oop.hpp"
|
||||||
#include "runtime/handles.hpp"
|
#include "runtime/handles.hpp"
|
||||||
|
#include "runtime/orderAccess.inline.hpp"
|
||||||
#include "runtime/sharedRuntime.hpp"
|
#include "runtime/sharedRuntime.hpp"
|
||||||
#include "runtime/stubRoutines.hpp"
|
#include "runtime/stubRoutines.hpp"
|
||||||
#include "utilities/ostream.hpp"
|
#include "utilities/ostream.hpp"
|
||||||
|
@ -465,10 +465,10 @@
|
|||||||
// Constructors
|
// Constructors
|
||||||
|
|
||||||
public:
|
public:
|
||||||
frame(intptr_t* sp);
|
inline frame(intptr_t* sp);
|
||||||
// To be used, if sp was not extended to match callee's calling convention.
|
// To be used, if sp was not extended to match callee's calling convention.
|
||||||
frame(intptr_t* sp, address pc);
|
inline frame(intptr_t* sp, address pc);
|
||||||
frame(intptr_t* sp, address pc, intptr_t* unextended_sp);
|
inline frame(intptr_t* sp, address pc, intptr_t* unextended_sp);
|
||||||
|
|
||||||
// Access frame via stack pointer.
|
// Access frame via stack pointer.
|
||||||
inline intptr_t* sp_addr_at(int index) const { return &sp()[index]; }
|
inline intptr_t* sp_addr_at(int index) const { return &sp()[index]; }
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precompiled.hpp"
|
#include "precompiled.hpp"
|
||||||
#include "runtime/frame.hpp"
|
#include "runtime/frame.inline.hpp"
|
||||||
#include "runtime/thread.hpp"
|
#include "runtime/thread.hpp"
|
||||||
|
|
||||||
frame JavaThread::pd_last_frame() {
|
frame JavaThread::pd_last_frame() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user