non-leaf-intrinsics.ll 1.2 KB

1234567891011121314151617181920212223242526
  1. ; RUN: opt -S -disable-output -passes=print-cg < %s 2>&1 | FileCheck %s
  2. declare void @llvm.experimental.patchpoint.void(i64, i32, i8*, i32, ...)
  3. declare i32 @llvm.experimental.gc.statepoint.p0f_isVoidf(i64, i32, void ()*, i32, i32, ...)
  4. define private void @f() {
  5. ret void
  6. }
  7. define void @calls_statepoint(i8 addrspace(1)* %arg) gc "statepoint-example" {
  8. ; CHECK: Call edges in function: calls_statepoint
  9. ; CHECK-NEXT: -> f
  10. entry:
  11. %cast = bitcast i8 addrspace(1)* %arg to i64 addrspace(1)*
  12. %safepoint_token = call i32 (i64, i32, void ()*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_isVoidf(i64 0, i32 0, void ()* @f, i32 0, i32 0, i32 0, i32 5, i32 0, i32 0, i32 0, i32 10, i32 0, i8 addrspace(1)* %arg, i64 addrspace(1)* %cast, i8 addrspace(1)* %arg, i8 addrspace(1)* %arg)
  13. ret void
  14. }
  15. define void @calls_patchpoint() {
  16. ; CHECK: Call edges in function: calls_patchpoint
  17. ; CHECK-NEXT: -> f
  18. entry:
  19. %c = bitcast void()* @f to i8*
  20. tail call void (i64, i32, i8*, i32, ...) @llvm.experimental.patchpoint.void(i64 1, i32 15, i8* %c, i32 0, i16 65535, i16 -1, i32 65536, i32 2000000000, i32 2147483647, i32 -1, i32 4294967295, i32 4294967296, i64 2147483648, i64 4294967295, i64 4294967296, i64 -1)
  21. ret void
  22. }