forked from OSchip/llvm-project
[SystemZ] Fix getTargetNodeName
It seems SystemZTargetLowering::getTargetNodeName got out of sync with some recent changes to the SystemZISD opcode list. Add back all the missing opcodes (and re-sort to the same order as SystemISelLowering.h). llvm-svn: 236430
This commit is contained in:
parent
204d0ee01f
commit
1c6f07d616
|
@ -2784,6 +2784,8 @@ const char *SystemZTargetLowering::getTargetNodeName(unsigned Opcode) const {
|
||||||
OPCODE(RET_FLAG);
|
OPCODE(RET_FLAG);
|
||||||
OPCODE(CALL);
|
OPCODE(CALL);
|
||||||
OPCODE(SIBCALL);
|
OPCODE(SIBCALL);
|
||||||
|
OPCODE(TLS_GDCALL);
|
||||||
|
OPCODE(TLS_LDCALL);
|
||||||
OPCODE(PCREL_WRAPPER);
|
OPCODE(PCREL_WRAPPER);
|
||||||
OPCODE(PCREL_OFFSET);
|
OPCODE(PCREL_OFFSET);
|
||||||
OPCODE(IABS);
|
OPCODE(IABS);
|
||||||
|
@ -2794,7 +2796,9 @@ const char *SystemZTargetLowering::getTargetNodeName(unsigned Opcode) const {
|
||||||
OPCODE(SELECT_CCMASK);
|
OPCODE(SELECT_CCMASK);
|
||||||
OPCODE(ADJDYNALLOC);
|
OPCODE(ADJDYNALLOC);
|
||||||
OPCODE(EXTRACT_ACCESS);
|
OPCODE(EXTRACT_ACCESS);
|
||||||
|
OPCODE(POPCNT);
|
||||||
OPCODE(UMUL_LOHI64);
|
OPCODE(UMUL_LOHI64);
|
||||||
|
OPCODE(SDIVREM32);
|
||||||
OPCODE(SDIVREM64);
|
OPCODE(SDIVREM64);
|
||||||
OPCODE(UDIVREM32);
|
OPCODE(UDIVREM32);
|
||||||
OPCODE(UDIVREM64);
|
OPCODE(UDIVREM64);
|
||||||
|
@ -2808,8 +2812,8 @@ const char *SystemZTargetLowering::getTargetNodeName(unsigned Opcode) const {
|
||||||
OPCODE(XC_LOOP);
|
OPCODE(XC_LOOP);
|
||||||
OPCODE(CLC);
|
OPCODE(CLC);
|
||||||
OPCODE(CLC_LOOP);
|
OPCODE(CLC_LOOP);
|
||||||
OPCODE(STRCMP);
|
|
||||||
OPCODE(STPCPY);
|
OPCODE(STPCPY);
|
||||||
|
OPCODE(STRCMP);
|
||||||
OPCODE(SEARCH_STRING);
|
OPCODE(SEARCH_STRING);
|
||||||
OPCODE(IPM);
|
OPCODE(IPM);
|
||||||
OPCODE(SERIALIZE);
|
OPCODE(SERIALIZE);
|
||||||
|
|
Loading…
Reference in New Issue