mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 03:24:38 +02:00
6989984: Use standard include model for Hospot
Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
This commit is contained in:
parent
01f78952da
commit
8006fe8f75
1587 changed files with 18714 additions and 14420 deletions
|
@ -22,6 +22,26 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP
|
||||
#define SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP
|
||||
|
||||
#include "memory/allocation.hpp"
|
||||
#include "oops/methodDataOop.hpp"
|
||||
#include "oops/methodOop.hpp"
|
||||
#include "runtime/basicLock.hpp"
|
||||
#include "runtime/frame.hpp"
|
||||
#include "runtime/globals.hpp"
|
||||
#include "utilities/globalDefinitions.hpp"
|
||||
#ifdef TARGET_ARCH_x86
|
||||
# include "bytes_x86.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_ARCH_sparc
|
||||
# include "bytes_sparc.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_ARCH_zero
|
||||
# include "bytes_zero.hpp"
|
||||
#endif
|
||||
|
||||
#ifdef CC_INTERP
|
||||
|
||||
// CVM definitions find hotspot equivalents...
|
||||
|
@ -558,8 +578,19 @@ void print();
|
|||
#endif // PRODUCT
|
||||
|
||||
// Platform fields/methods
|
||||
# include "incls/_bytecodeInterpreter_pd.hpp.incl"
|
||||
#ifdef TARGET_ARCH_x86
|
||||
# include "bytecodeInterpreter_x86.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_ARCH_sparc
|
||||
# include "bytecodeInterpreter_sparc.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_ARCH_zero
|
||||
# include "bytecodeInterpreter_zero.hpp"
|
||||
#endif
|
||||
|
||||
|
||||
}; // BytecodeInterpreter
|
||||
|
||||
#endif // CC_INTERP
|
||||
|
||||
#endif // SHARE_VM_INTERPRETER_BYTECODEINTERPRETER_HPP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue