Gabe Black has uploaded this change for review. (
https://gem5-review.googlesource.com/c/public/gem5/+/49734 )
Change subject: arch: Delete now unused operand types.
......................................................................
arch: Delete now unused operand types.
These have been subsumed into the RegOperand type, and are fronted by
the *RegOperandDesc OperandDesc classes.
Change-Id: If57b683b06f3002004863c2d74f2a645882fbd41
---
M src/arch/isa_parser/operand_types.py
1 file changed, 0 insertions(+), 12 deletions(-)
diff --git a/src/arch/isa_parser/operand_types.py
b/src/arch/isa_parser/operand_types.py
index 331fed3..4ba3b4f 100755
--- a/src/arch/isa_parser/operand_types.py
+++ b/src/arch/isa_parser/operand_types.py
@@ -283,33 +283,21 @@
super(RegOperandDesc, self).__init__(*args, **kwargs)
self.attrs['reg_class'] = reg_class
-class IntRegOperand(RegOperand):
- reg_class = 'IntRegClass'
-
class IntRegOperandDesc(RegOperandDesc):
def __init__(self, *args, **kwargs):
super(IntRegOperandDesc, self).__init__(
'IntRegClass', 'Reg', *args, **kwargs)
-class FloatRegOperand(RegOperand):
- reg_class = 'FloatRegClass'
-
class FloatRegOperandDesc(RegOperandDesc):
def __init__(self, *args, **kwargs):
super(FloatRegOperandDesc, self).__init__(
'FloatRegClass', 'Reg', *args, **kwargs)
-class CCRegOperand(RegOperand):
- reg_class = 'CCRegClass'
-
class CCRegOperandDesc(RegOperandDesc):
def __init__(self, *args, **kwargs):
super(CCRegOperandDesc, self).__init__(
'CCRegClass', 'Reg', *args, **kwargs)
-class VecElemOperand(RegOperand):
- reg_class = 'VecElemClass'
-
class VecElemOperandDesc(RegOperandDesc):
def __init__(self, *args, **kwargs):
super(VecElemOperandDesc, self).__init__(
--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/49734
To unsubscribe, or for help writing mail filters, visit
https://gem5-review.googlesource.com/settings
Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: If57b683b06f3002004863c2d74f2a645882fbd41
Gerrit-Change-Number: 49734
Gerrit-PatchSet: 1
Gerrit-Owner: Gabe Black <gabe.bl...@gmail.com>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list -- gem5-dev@gem5.org
To unsubscribe send an email to gem5-dev-le...@gem5.org
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s