mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 03:54:33 +02:00
8003250: SPARC: move MacroAssembler into separate file
Reviewed-by: jrose, kvn
This commit is contained in:
parent
42c0192ee6
commit
34733bb83c
38 changed files with 6946 additions and 7246 deletions
|
@ -93,6 +93,21 @@ enum { name##_##type##EnumValue = value##_##type##EnumValue }
|
|||
#define REGISTER_DEFINITION(type, name) \
|
||||
const type name = ((type)name##_##type##EnumValue)
|
||||
|
||||
#ifdef TARGET_ARCH_x86
|
||||
# include "register_x86.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_ARCH_sparc
|
||||
# include "register_sparc.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_ARCH_zero
|
||||
# include "register_zero.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_ARCH_arm
|
||||
# include "register_arm.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_ARCH_ppc
|
||||
# include "register_ppc.hpp"
|
||||
#endif
|
||||
|
||||
|
||||
// Debugging support
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue