[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).



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236430 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ulrich Weigand 2015-05-04 17:39:40 +00:00
parent ba99a57342
commit d9af71b574

View File

@ -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);