8200302: ppc, s390 (non-pch) build errors

Reviewed-by: coleenp, lfoltan
This commit is contained in:
Thomas Stuefe 2018-03-27 18:31:25 +02:00
parent b541d9ad77
commit b22a2dd78a
4 changed files with 6 additions and 5 deletions

View File

@ -384,7 +384,7 @@
// Constructors
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);
private:

View File

@ -30,6 +30,7 @@
#include "oops/compressedOops.inline.hpp"
#include "oops/oop.hpp"
#include "runtime/handles.hpp"
#include "runtime/orderAccess.inline.hpp"
#include "runtime/sharedRuntime.hpp"
#include "runtime/stubRoutines.hpp"
#include "utilities/ostream.hpp"

View File

@ -465,10 +465,10 @@
// Constructors
public:
frame(intptr_t* sp);
inline frame(intptr_t* sp);
// To be used, if sp was not extended to match callee's calling convention.
frame(intptr_t* sp, address pc);
frame(intptr_t* sp, address pc, intptr_t* unextended_sp);
inline frame(intptr_t* sp, address pc);
inline frame(intptr_t* sp, address pc, intptr_t* unextended_sp);
// Access frame via stack pointer.
inline intptr_t* sp_addr_at(int index) const { return &sp()[index]; }

View File

@ -24,7 +24,7 @@
*/
#include "precompiled.hpp"
#include "runtime/frame.hpp"
#include "runtime/frame.inline.hpp"
#include "runtime/thread.hpp"
frame JavaThread::pd_last_frame() {