diff options
Diffstat (limited to 'llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp')
| -rw-r--r-- | llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp b/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp index c8a85d76a55b..0bee9022975e 100644 --- a/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp +++ b/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp @@ -15,19 +15,19 @@ namespace AMDGPU { namespace SendMsg { // This must be in sync with llvm::AMDGPU::SendMsg::Id enum members, see SIDefines.h. -const char* const IdSymbolic[] = { +const char *const IdSymbolic[ID_GAPS_LAST_] = { nullptr, "MSG_INTERRUPT", "MSG_GS", "MSG_GS_DONE", - nullptr, - nullptr, - nullptr, - nullptr, - nullptr, + "MSG_SAVEWAVE", + "MSG_STALL_WAVE_GEN", + "MSG_HALT_WAVES", + "MSG_ORDERED_PS_DONE", + "MSG_EARLY_PRIM_DEALLOC", "MSG_GS_ALLOC_REQ", "MSG_GET_DOORBELL", - nullptr, + "MSG_GET_DDID", nullptr, nullptr, nullptr, @@ -35,7 +35,7 @@ const char* const IdSymbolic[] = { }; // These two must be in sync with llvm::AMDGPU::SendMsg::Op enum members, see SIDefines.h. -const char* const OpSysSymbolic[] = { +const char *const OpSysSymbolic[OP_SYS_LAST_] = { nullptr, "SYSMSG_OP_ECC_ERR_INTERRUPT", "SYSMSG_OP_REG_RD", @@ -43,7 +43,7 @@ const char* const OpSysSymbolic[] = { "SYSMSG_OP_TTRACE_PC" }; -const char* const OpGsSymbolic[] = { +const char *const OpGsSymbolic[OP_GS_LAST_] = { "GS_OP_NOP", "GS_OP_CUT", "GS_OP_EMIT", |
