| ... | ... | @@ -2723,6 +2723,10 @@ pub const Intrinsic = enum { |
| 2723 | 2723 | @"threadlocal.address", |
| 2724 | 2724 | vscale, |
| 2725 | 2725 | |
| 2726 | // Debug |
| 2727 | @"dbg.declare", |
| 2728 | @"dbg.value", |
| 2729 | |
| 2726 | 2730 | // AMDGPU |
| 2727 | 2731 | @"amdgcn.workitem.id.x", |
| 2728 | 2732 | @"amdgcn.workitem.id.y", |
| ... | ... | @@ -3817,6 +3821,25 @@ pub const Intrinsic = enum { |
| 3817 | 3821 | .attrs = &.{ .nocallback, .nofree, .nosync, .nounwind, .willreturn, .{ .memory = Attribute.Memory.all(.none) } }, |
| 3818 | 3822 | }, |
| 3819 | 3823 | |
| 3824 | .@"dbg.declare" = .{ |
| 3825 | .ret_len = 0, |
| 3826 | .params = &.{ |
| 3827 | .{ .kind = .{ .type = .metadata } }, |
| 3828 | .{ .kind = .{ .type = .metadata } }, |
| 3829 | .{ .kind = .{ .type = .metadata } }, |
| 3830 | }, |
| 3831 | .attrs = &.{ .nocallback, .nofree, .nosync, .nounwind, .speculatable, .willreturn, .{ .memory = Attribute.Memory.all(.none) } }, |
| 3832 | }, |
| 3833 | .@"dbg.value" = .{ |
| 3834 | .ret_len = 0, |
| 3835 | .params = &.{ |
| 3836 | .{ .kind = .{ .type = .metadata } }, |
| 3837 | .{ .kind = .{ .type = .metadata } }, |
| 3838 | .{ .kind = .{ .type = .metadata } }, |
| 3839 | }, |
| 3840 | .attrs = &.{ .nocallback, .nofree, .nosync, .nounwind, .speculatable, .willreturn, .{ .memory = Attribute.Memory.all(.none) } }, |
| 3841 | }, |
| 3842 | |
| 3820 | 3843 | .@"amdgcn.workitem.id.x" = .{ |
| 3821 | 3844 | .ret_len = 1, |
| 3822 | 3845 | .params = &.{ |