8041794: remove bytecodes_<arch>.{cpp,hpp} files

Reviewed-by: dholmes, coleenp, twisti, iignatyev
This commit is contained in:
Lev Priima 2014-06-20 22:39:56 +04:00 committed by Igor Ignatyev
parent 1319cf1a68
commit 644042fe4a
10 changed files with 0 additions and 285 deletions

View file

@ -541,9 +541,6 @@ void Bytecodes::initialize() {
def(_shouldnotreachhere , "_shouldnotreachhere" , "b" , NULL , T_VOID , 0, false);
// platform specific JVM bytecodes
pd_initialize();
// compare can_trap information for each bytecode with the
// can_trap information for the corresponding base bytecode
// (if a rewritten bytecode can trap, so must the base bytecode)

View file

@ -287,23 +287,6 @@ class Bytecodes: AllStatic {
_shouldnotreachhere, // For debugging
// Platform specific JVM bytecodes
#ifdef TARGET_ARCH_x86
# include "bytecodes_x86.hpp"
#endif
#ifdef TARGET_ARCH_sparc
# include "bytecodes_sparc.hpp"
#endif
#ifdef TARGET_ARCH_zero
# include "bytecodes_zero.hpp"
#endif
#ifdef TARGET_ARCH_arm
# include "bytecodes_arm.hpp"
#endif
#ifdef TARGET_ARCH_ppc
# include "bytecodes_ppc.hpp"
#endif
number_of_codes
};
@ -348,8 +331,6 @@ class Bytecodes: AllStatic {
static void def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap);
static void def(Code code, const char* name, const char* format, const char* wide_format, BasicType result_type, int depth, bool can_trap, Code java_code);
static void pd_initialize(); // platform specific initialization
static Code pd_base_code_for(Code code); // platform specific base_code_for implementation
// Verify that bcp points into method
#ifdef ASSERT