
This change consolidates and cleans up various NVPTXISD target-specific nodes in order to simplify SDAG ISel. While there are some whitespace changes in the emitted PTX it is otherwise a non-functional change. NVPTXISD::Wrapper - This node was used to wrap external-symbol and global-address nodes. It is redundant and has been removed. Instead we use the non-target versions of these nodes and convert them appropriately during ISel. NVPTXISD::CALL - Much of the family of nodes used to represent a PTX call instruction have been replaced by this new single node. It corresponds to a single instruction and is therefore much simpler to create and lower.
67 lines
1.6 KiB
LLVM
67 lines
1.6 KiB
LLVM
; RUN: llc < %s -mtriple=nvptx64 -mcpu=sm_30 -mattr=+ptx64 | FileCheck %s
|
|
; RUN: %if ptxas %{ llc < %s -mtriple=nvptx64 -mcpu=sm_30 -mattr=+ptx64 | %ptxas-verify %}
|
|
|
|
define i32 @a() { ret i32 0 }
|
|
@b = internal alias i32 (), ptr @a
|
|
@c = internal alias i32 (), ptr @a
|
|
@d = internal alias i32 (), ptr @c
|
|
|
|
define void @foo(i32 %0, ptr %1) { ret void }
|
|
@bar = alias i32 (), ptr @foo
|
|
|
|
define void @noreturn() #0 {
|
|
ret void
|
|
}
|
|
@noreturn_alias = alias i32 (), ptr @noreturn
|
|
|
|
define i32 @z() {
|
|
%val = call i32 @b()
|
|
ret i32 %val
|
|
}
|
|
|
|
|
|
attributes #0 = { noreturn }
|
|
|
|
; CHECK: .visible .func (.param .b32 func_retval0) b
|
|
; CHECK-NEXT: ()
|
|
; CHECK-NEXT: ;
|
|
|
|
; CHECK: .visible .func (.param .b32 func_retval0) c
|
|
; CHECK-NEXT: ()
|
|
; CHECK-NEXT: ;
|
|
|
|
; CHECK: .visible .func (.param .b32 func_retval0) d
|
|
; CHECK-NEXT: ()
|
|
; CHECK-NEXT: ;
|
|
|
|
; CHECK: .visible .func bar
|
|
; CHECK-NEXT: (
|
|
; CHECK-NEXT: .param .b32 foo_param_0,
|
|
; CHECK-NEXT: .param .b64 foo_param_1
|
|
; CHECK-NEXT: )
|
|
; CHECK-NEXT: ;
|
|
|
|
; CHECK: .visible .func noreturn_alias
|
|
; CHECK-NEXT: ()
|
|
; CHECK-NEXT: .noreturn;
|
|
|
|
; CHECK: .visible .func (.param .b32 func_retval0) a()
|
|
|
|
; CHECK: .visible .func foo(
|
|
; CHECK-NEXT: .param .b32 foo_param_0,
|
|
; CHECK-NEXT: .param .b64 foo_param_1
|
|
; CHECK-NEXT: )
|
|
|
|
; CHECK: .visible .func noreturn()
|
|
; CHECK-NEXT: .noreturn
|
|
|
|
; CHECK: .visible .func (.param .b32 func_retval0) z()
|
|
; CHECK: call.uni (retval0), b,
|
|
|
|
|
|
; CHECK: .alias b, a;
|
|
; CHECK: .alias c, a;
|
|
; CHECK: .alias d, a;
|
|
; CHECK: .alias bar, foo;
|
|
; CHECK: .alias noreturn_alias, noreturn;
|