Skip to content

Commit 8563d86

Browse files
committedFeb 21, 2022
8282085: The REGISTER_DEFINITION macro is useless after JDK-8269122
Reviewed-by: jiefu, chagedorn, kvn
1 parent d28b048 commit 8563d86

6 files changed

+2
-531
lines changed
 

‎src/hotspot/cpu/aarch64/register_definitions_aarch64.cpp

-208
This file was deleted.

‎src/hotspot/cpu/arm/register_definitions_arm.cpp

-100
This file was deleted.

‎src/hotspot/cpu/ppc/register_definitions_ppc.cpp

-37
This file was deleted.

‎src/hotspot/cpu/s390/register_definitions_s390.cpp

-39
This file was deleted.

‎src/hotspot/cpu/x86/register_definitions_x86.cpp

-143
This file was deleted.

‎src/hotspot/share/asm/register.hpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -36,7 +36,7 @@ typedef AbstractRegisterImpl* AbstractRegister;
3636

3737
// The super class for platform specific registers. Instead of using value objects,
3838
// registers are implemented as pointers. Subclassing is used so all registers can
39-
// use the debugging suport below. No virtual functions are used for efficiency.
39+
// use the debugging support below. No virtual functions are used for efficiency.
4040
// They are canonicalized; i.e., registers are equal if their pointers are equal,
4141
// and vice versa. A concrete implementation may just map the register onto 'this'.
4242

@@ -87,8 +87,6 @@ const type name = ((type)value)
8787
#endif
8888

8989

90-
#define REGISTER_DEFINITION(type, name)
91-
9290
#include CPU_HEADER(register)
9391

9492
// Debugging support

0 commit comments

Comments
 (0)
Please sign in to comment.