2015-01-07 02:00:21 +08:00
|
|
|
;RUN: llc < %s -march=amdgcn -mcpu=verde -verify-machineinstrs | FileCheck %s
|
2015-01-28 01:27:15 +08:00
|
|
|
;RUN: llc < %s -march=amdgcn -mcpu=tonga -verify-machineinstrs | FileCheck %s
|
2014-01-27 15:20:44 +08:00
|
|
|
|
2014-10-02 01:15:17 +08:00
|
|
|
; CHECK-LABEL: {{^}}main:
|
2015-05-12 22:18:16 +08:00
|
|
|
; CHECK: s_mov_b32 m0, 0
|
|
|
|
; CHECK-NOT: s_mov_b32 m0
|
2016-05-07 01:48:48 +08:00
|
|
|
; CHECK: s_sendmsg sendmsg(MSG_GS, GS_OP_EMIT, 0)
|
|
|
|
; CHECK: s_sendmsg sendmsg(MSG_GS, GS_OP_CUT, 1)
|
|
|
|
; CHECK: s_sendmsg sendmsg(MSG_GS, GS_OP_EMIT_CUT, 2)
|
|
|
|
; CHECK: s_sendmsg sendmsg(MSG_GS_DONE, GS_OP_NOP)
|
2014-01-27 15:20:44 +08:00
|
|
|
|
|
|
|
define void @main() {
|
|
|
|
main_body:
|
|
|
|
call void @llvm.SI.sendmsg(i32 34, i32 0);
|
|
|
|
call void @llvm.SI.sendmsg(i32 274, i32 0);
|
|
|
|
call void @llvm.SI.sendmsg(i32 562, i32 0);
|
|
|
|
call void @llvm.SI.sendmsg(i32 3, i32 0);
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
; Function Attrs: nounwind
|
|
|
|
declare void @llvm.SI.sendmsg(i32, i32) #0
|
|
|
|
|
|
|
|
attributes #0 = { nounwind }
|