| ... | ... | @@ -106,11 +106,11 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 106 | 106 | }, |
| 107 | 107 | \\breakpoint set --file basic.zig --source-pattern-regexp '_ = basic;' |
| 108 | 108 | \\process launch |
| 109 | | \\frame variable --show-types -- basic |
| 109 | \\frame variable --show-all-children --show-types -- basic |
| 110 | 110 | \\breakpoint delete --force 1 |
| 111 | 111 | , |
| 112 | 112 | &.{ |
| 113 | | \\(lldb) frame variable --show-types -- basic |
| 113 | \\(lldb) frame variable --show-all-children --show-types -- basic |
| 114 | 114 | \\(root.basic.Basic) basic = { |
| 115 | 115 | \\ (void) .void = {} |
| 116 | 116 | \\ (bool) .bool_false = false |
| ... | ... | @@ -241,11 +241,11 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 241 | 241 | }, |
| 242 | 242 | \\breakpoint set --file pointers.zig --source-pattern-regexp '_ = pointers;' |
| 243 | 243 | \\process launch |
| 244 | | \\frame variable --show-types -- pointers |
| 244 | \\frame variable --show-all-children --show-types -- pointers |
| 245 | 245 | \\breakpoint delete --force 1 |
| 246 | 246 | , |
| 247 | 247 | &.{ |
| 248 | | \\(lldb) frame variable --show-types -- pointers |
| 248 | \\(lldb) frame variable --show-all-children --show-types -- pointers |
| 249 | 249 | \\(root.pointers.Pointers) pointers = { |
| 250 | 250 | \\ (*u32) .single = 0x0000000000001010 |
| 251 | 251 | \\ (*const u32) .single_const = 0x0000000000001014 |
| ... | ... | @@ -328,13 +328,13 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 328 | 328 | }, |
| 329 | 329 | \\breakpoint set --file strings.zig --source-pattern-regexp '_ = strings;' |
| 330 | 330 | \\process launch |
| 331 | | \\frame variable --show-types -- strings.slice |
| 332 | | \\frame variable --show-types --format character -- strings.slice |
| 333 | | \\frame variable --show-types --format c-string -- strings |
| 331 | \\frame variable --show-all-children --show-types -- strings.slice |
| 332 | \\frame variable --show-all-children --show-types --format character -- strings.slice |
| 333 | \\frame variable --show-all-children --show-types --format c-string -- strings |
| 334 | 334 | \\breakpoint delete --force 1 |
| 335 | 335 | , |
| 336 | 336 | &.{ |
| 337 | | \\(lldb) frame variable --show-types -- strings.slice |
| 337 | \\(lldb) frame variable --show-all-children --show-types -- strings.slice |
| 338 | 338 | \\([:0]const u8) strings.slice = len=9 { |
| 339 | 339 | \\ (u8) [0] = 115 |
| 340 | 340 | \\ (u8) [1] = 108 |
| ... | ... | @@ -346,7 +346,7 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 346 | 346 | \\ (u8) [7] = 92 |
| 347 | 347 | \\ (u8) [8] = 0 |
| 348 | 348 | \\} |
| 349 | | \\(lldb) frame variable --show-types --format character -- strings.slice |
| 349 | \\(lldb) frame variable --show-all-children --show-types --format character -- strings.slice |
| 350 | 350 | \\([:0]const u8) strings.slice = len=9 { |
| 351 | 351 | \\ (u8) [0] = 's' |
| 352 | 352 | \\ (u8) [1] = 'l' |
| ... | ... | @@ -358,7 +358,7 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 358 | 358 | \\ (u8) [7] = '\\' |
| 359 | 359 | \\ (u8) [8] = '\x00' |
| 360 | 360 | \\} |
| 361 | | \\(lldb) frame variable --show-types --format c-string -- strings |
| 361 | \\(lldb) frame variable --show-all-children --show-types --format c-string -- strings |
| 362 | 362 | \\(root.strings.Strings) strings = { |
| 363 | 363 | \\ ([*c]const u8) .c_ptr = "c_ptr\x07\x08\t" |
| 364 | 364 | \\ ([*:0]const u8) .many_ptr = "many_ptr\n\x0b\x0c" |
| ... | ... | @@ -410,7 +410,7 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 410 | 410 | \\breakpoint set --file enums.zig --source-pattern-regexp '_ = enums;' |
| 411 | 411 | \\process launch |
| 412 | 412 | \\expression --show-types -- Enums |
| 413 | | \\frame variable --show-types -- enums |
| 413 | \\frame variable --show-all-children --show-types -- enums |
| 414 | 414 | \\breakpoint delete --force 1 |
| 415 | 415 | , |
| 416 | 416 | &.{ |
| ... | ... | @@ -430,7 +430,7 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 430 | 430 | \\ (root.enums.Enums.Three) third = .third |
| 431 | 431 | \\ } |
| 432 | 432 | \\} |
| 433 | | \\(lldb) frame variable --show-types -- enums |
| 433 | \\(lldb) frame variable --show-all-children --show-types -- enums |
| 434 | 434 | \\(root.enums.Enums) enums = { |
| 435 | 435 | \\ (root.enums.Enums.Zero) .zero = @enumFromInt(13) |
| 436 | 436 | \\ (root.enums.Enums.One) .one = .first |
| ... | ... | @@ -474,7 +474,7 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 474 | 474 | \\breakpoint set --file errors.zig --source-pattern-regexp '_ = errors;' |
| 475 | 475 | \\process launch |
| 476 | 476 | \\expression --show-types -- Errors |
| 477 | | \\frame variable --show-types -- errors |
| 477 | \\frame variable --show-all-children --show-types -- errors |
| 478 | 478 | \\breakpoint delete --force 1 |
| 479 | 479 | , |
| 480 | 480 | &.{ |
| ... | ... | @@ -494,7 +494,7 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 494 | 494 | \\ (error{One,Three,Two}) Three = error.Three |
| 495 | 495 | \\ } |
| 496 | 496 | \\} |
| 497 | | \\(lldb) frame variable --show-types -- errors |
| 497 | \\(lldb) frame variable --show-all-children --show-types -- errors |
| 498 | 498 | \\(root.errors.Errors) errors = { |
| 499 | 499 | \\ (error{One}) .one = error.One |
| 500 | 500 | \\ (error{One,Two}) .two = error.Two |
| ... | ... | @@ -534,23 +534,23 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 534 | 534 | }, |
| 535 | 535 | \\breakpoint set --file optionals.zig --source-pattern-regexp 'maybe_u32 = 123;' |
| 536 | 536 | \\process launch |
| 537 | | \\frame variable -- null_u32 maybe_u32 nonnull_u32 |
| 537 | \\frame variable --show-all-children -- null_u32 maybe_u32 nonnull_u32 |
| 538 | 538 | \\breakpoint delete --force 1 |
| 539 | 539 | \\ |
| 540 | 540 | \\breakpoint set --file optionals.zig --source-pattern-regexp 'nonnull_u32 = nonnull_u32;' |
| 541 | 541 | \\process continue |
| 542 | | \\frame variable --show-types -- null_u32 maybe_u32 nonnull_u32 |
| 542 | \\frame variable --show-all-children --show-types -- null_u32 maybe_u32 nonnull_u32 |
| 543 | 543 | \\breakpoint delete --force 2 |
| 544 | 544 | , |
| 545 | 545 | &.{ |
| 546 | | \\(lldb) frame variable -- null_u32 maybe_u32 nonnull_u32 |
| 546 | \\(lldb) frame variable --show-all-children -- null_u32 maybe_u32 nonnull_u32 |
| 547 | 547 | \\(?u32) null_u32 = null |
| 548 | 548 | \\(?u32) maybe_u32 = null |
| 549 | 549 | \\(?u32) nonnull_u32 = (nonnull_u32.? = 456) |
| 550 | 550 | \\(lldb) breakpoint delete --force 1 |
| 551 | 551 | \\1 breakpoints deleted; 0 breakpoint locations disabled. |
| 552 | 552 | , |
| 553 | | \\(lldb) frame variable --show-types -- null_u32 maybe_u32 nonnull_u32 |
| 553 | \\(lldb) frame variable --show-all-children --show-types -- null_u32 maybe_u32 nonnull_u32 |
| 554 | 554 | \\(?u32) null_u32 = null |
| 555 | 555 | \\(?u32) maybe_u32 = { |
| 556 | 556 | \\ (u32) maybe_u32.? = 123 |
| ... | ... | @@ -604,7 +604,7 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 604 | 604 | \\breakpoint set --file unions.zig --source-pattern-regexp '_ = unions;' |
| 605 | 605 | \\process launch |
| 606 | 606 | \\expression --show-types -- Unions |
| 607 | | \\frame variable --show-types -- unions |
| 607 | \\frame variable --show-all-children --show-types -- unions |
| 608 | 608 | \\breakpoint delete --force 1 |
| 609 | 609 | , |
| 610 | 610 | &.{ |
| ... | ... | @@ -627,7 +627,7 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 627 | 627 | \\ (@typeInfo(unions.Unions.Tagged).@"union".tag_type.?) eu = .eu |
| 628 | 628 | \\ } |
| 629 | 629 | \\} |
| 630 | | \\(lldb) frame variable --show-types -- unions |
| 630 | \\(lldb) frame variable --show-all-children --show-types -- unions |
| 631 | 631 | \\(root.unions.Unions) unions = { |
| 632 | 632 | \\ (root.unions.Unions.Untagged) .untagged = { |
| 633 | 633 | \\ (u32) .u32 = 3217031168 |
| ... | ... | @@ -712,7 +712,7 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 712 | 712 | \\breakpoint set --file storage.zig --source-pattern-regexp 'local_var = local_var;' |
| 713 | 713 | \\process launch |
| 714 | 714 | \\target variable --show-types --format hex -- global_const global_var global_threadlocal1 global_threadlocal2 extern_const extern_var extern_threadlocal1 extern_threadlocal2 |
| 715 | | \\frame variable --show-types --format hex -- param1 param2 param3 param4 param5 param6 param7 param8 local_comptime_val local_comptime_ptr.0 local_const local_var |
| 715 | \\frame variable --show-all-children --show-types --format hex -- param1 param2 param3 param4 param5 param6 param7 param8 local_comptime_val 'local_comptime_ptr.@"0"' local_comptime_ptr[0] local_const local_var |
| 716 | 716 | \\breakpoint delete --force 1 |
| 717 | 717 | , |
| 718 | 718 | &.{ |
| ... | ... | @@ -729,7 +729,7 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 729 | 729 | \\(u64) extern_threadlocal1 = 0x3034c4ce967ed64d |
| 730 | 730 | \\(u64) extern_threadlocal2 = 0xfd330ab00b4bc5eb |
| 731 | 731 | \\(u64) extern_threadlocal2 = 0xfd330ab00b4bc5eb |
| 732 | | \\(lldb) frame variable --show-types --format hex -- param1 param2 param3 param4 param5 param6 param7 param8 local_comptime_val local_comptime_ptr.0 local_const local_var |
| 732 | \\(lldb) frame variable --show-all-children --show-types --format hex -- param1 param2 param3 param4 param5 param6 param7 param8 local_comptime_val 'local_comptime_ptr.@"0"' local_comptime_ptr[0] local_const local_var |
| 733 | 733 | \\(u64) param1 = 0x6a607e08125c7e00 |
| 734 | 734 | \\(u64) param2 = 0x98944cb2a45a8b51 |
| 735 | 735 | \\(u64) param3 = 0xa320cf10601ee6fb |
| ... | ... | @@ -739,7 +739,8 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 739 | 739 | \\(u64) param7 = 0xf9a252c455fb4c06 |
| 740 | 740 | \\(u64) param8 = 0xc88533722601e481 |
| 741 | 741 | \\(u64) local_comptime_val = 0x69490636f81df751 |
| 742 | | \\(u64) local_comptime_ptr.0 = 0x82e834dae74767a1 |
| 742 | \\(u64) local_comptime_ptr.@"0" = 0x82e834dae74767a1 |
| 743 | \\(u64) local_comptime_ptr[0] = 0x82e834dae74767a1 |
| 743 | 744 | \\(u64) local_const = 0x104ba3ac46b25fad |
| 744 | 745 | \\(u64) local_var = 0x92a39776a1f5380c |
| 745 | 746 | \\(lldb) breakpoint delete --force 1 |
| ... | ... | @@ -770,18 +771,18 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 770 | 771 | }, |
| 771 | 772 | \\breakpoint set --file if_blocks.zig --source-pattern-regexp '_ = &x;' |
| 772 | 773 | \\process launch |
| 773 | | \\frame variable |
| 774 | \\frame variable --show-all-children |
| 774 | 775 | \\process continue |
| 775 | | \\frame variable |
| 776 | \\frame variable --show-all-children |
| 776 | 777 | \\breakpoint delete --force 1 |
| 777 | 778 | , |
| 778 | 779 | &.{ |
| 779 | | \\(lldb) frame variable |
| 780 | \\(lldb) frame variable --show-all-children |
| 780 | 781 | \\(usize) i = 0 |
| 781 | 782 | \\(u32) x = 123 |
| 782 | 783 | \\(lldb) process continue |
| 783 | 784 | , |
| 784 | | \\(lldb) frame variable |
| 785 | \\(lldb) frame variable --show-all-children |
| 785 | 786 | \\(usize) i = 1 |
| 786 | 787 | \\(f32) x = 4.5 |
| 787 | 788 | \\(lldb) breakpoint delete --force 1 |
| ... | ... | @@ -815,18 +816,18 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 815 | 816 | }, |
| 816 | 817 | \\breakpoint set --file switch_blocks.zig --source-pattern-regexp '_ = &x;' |
| 817 | 818 | \\process launch |
| 818 | | \\frame variable |
| 819 | \\frame variable --show-all-children |
| 819 | 820 | \\process continue |
| 820 | | \\frame variable |
| 821 | \\frame variable --show-all-children |
| 821 | 822 | \\breakpoint delete --force 1 |
| 822 | 823 | , |
| 823 | 824 | &.{ |
| 824 | | \\(lldb) frame variable |
| 825 | \\(lldb) frame variable --show-all-children |
| 825 | 826 | \\(usize) i = 0 |
| 826 | 827 | \\(u32) x = 123 |
| 827 | 828 | \\(lldb) process continue |
| 828 | 829 | , |
| 829 | | \\(lldb) frame variable |
| 830 | \\(lldb) frame variable --show-all-children |
| 830 | 831 | \\(usize) i = 1 |
| 831 | 832 | \\(f32) x = 4.5 |
| 832 | 833 | \\(lldb) breakpoint delete --force 1 |
| ... | ... | @@ -882,372 +883,372 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 882 | 883 | \\process launch |
| 883 | 884 | \\thread step-in |
| 884 | 885 | \\#00 |
| 885 | | \\frame variable x |
| 886 | \\frame variable --show-all-children x |
| 886 | 887 | \\thread step-in |
| 887 | 888 | \\#01 |
| 888 | | \\frame variable x |
| 889 | \\frame variable --show-all-children x |
| 889 | 890 | \\thread step-in |
| 890 | 891 | \\#02 |
| 891 | | \\frame variable x |
| 892 | \\frame variable --show-all-children x |
| 892 | 893 | \\thread step-in |
| 893 | 894 | \\#03 |
| 894 | | \\frame variable x |
| 895 | \\frame variable --show-all-children x |
| 895 | 896 | \\thread step-in |
| 896 | 897 | \\#04 |
| 897 | | \\frame variable x |
| 898 | \\frame variable --show-all-children x |
| 898 | 899 | \\thread step-in |
| 899 | 900 | \\#05 |
| 900 | | \\frame variable x |
| 901 | \\frame variable --show-all-children x |
| 901 | 902 | \\thread step-in |
| 902 | 903 | \\#06 |
| 903 | | \\frame variable x |
| 904 | \\frame variable --show-all-children x |
| 904 | 905 | \\thread step-in |
| 905 | 906 | \\#07 |
| 906 | | \\frame variable x |
| 907 | \\frame variable --show-all-children x |
| 907 | 908 | \\thread step-in |
| 908 | 909 | \\#08 |
| 909 | | \\frame variable x |
| 910 | \\frame variable --show-all-children x |
| 910 | 911 | \\thread step-in |
| 911 | 912 | \\#09 |
| 912 | | \\frame variable x |
| 913 | \\frame variable --show-all-children x |
| 913 | 914 | \\thread step-in |
| 914 | 915 | \\#10 |
| 915 | | \\frame variable x |
| 916 | \\frame variable --show-all-children x |
| 916 | 917 | \\thread step-in |
| 917 | 918 | \\#11 |
| 918 | | \\frame variable x |
| 919 | \\frame variable --show-all-children x |
| 919 | 920 | \\thread step-in |
| 920 | 921 | \\#12 |
| 921 | | \\frame variable x |
| 922 | \\frame variable --show-all-children x |
| 922 | 923 | \\thread step-in |
| 923 | 924 | \\#13 |
| 924 | | \\frame variable x |
| 925 | \\frame variable --show-all-children x |
| 925 | 926 | \\thread step-in |
| 926 | 927 | \\#14 |
| 927 | | \\frame variable x |
| 928 | \\frame variable --show-all-children x |
| 928 | 929 | \\thread step-in |
| 929 | 930 | \\#15 |
| 930 | | \\frame variable x |
| 931 | \\frame variable --show-all-children x |
| 931 | 932 | \\thread step-in |
| 932 | 933 | \\#16 |
| 933 | | \\frame variable x |
| 934 | \\frame variable --show-all-children x |
| 934 | 935 | \\thread step-in |
| 935 | 936 | \\#17 |
| 936 | | \\frame variable x |
| 937 | \\frame variable --show-all-children x |
| 937 | 938 | \\thread step-in |
| 938 | 939 | \\#18 |
| 939 | | \\frame variable x |
| 940 | \\frame variable --show-all-children x |
| 940 | 941 | \\thread step-in |
| 941 | 942 | \\#19 |
| 942 | | \\frame variable x |
| 943 | \\frame variable --show-all-children x |
| 943 | 944 | \\thread step-in |
| 944 | 945 | \\#20 |
| 945 | | \\frame variable x |
| 946 | \\frame variable --show-all-children x |
| 946 | 947 | \\thread step-in |
| 947 | 948 | \\#21 |
| 948 | | \\frame variable x |
| 949 | \\frame variable --show-all-children x |
| 949 | 950 | \\thread step-in |
| 950 | 951 | \\#22 |
| 951 | | \\frame variable x |
| 952 | \\frame variable --show-all-children x |
| 952 | 953 | \\thread step-in |
| 953 | 954 | \\#23 |
| 954 | | \\frame variable x |
| 955 | \\frame variable --show-all-children x |
| 955 | 956 | \\thread step-in |
| 956 | 957 | \\#24 |
| 957 | | \\frame variable x |
| 958 | \\frame variable --show-all-children x |
| 958 | 959 | \\thread step-in |
| 959 | 960 | \\#25 |
| 960 | | \\frame variable x |
| 961 | \\frame variable --show-all-children x |
| 961 | 962 | \\thread step-in |
| 962 | 963 | \\#26 |
| 963 | | \\frame variable x |
| 964 | \\frame variable --show-all-children x |
| 964 | 965 | \\thread step-in |
| 965 | 966 | \\#27 |
| 966 | | \\frame variable x |
| 967 | \\frame variable --show-all-children x |
| 967 | 968 | \\thread step-in |
| 968 | 969 | \\#28 |
| 969 | | \\frame variable x |
| 970 | \\frame variable --show-all-children x |
| 970 | 971 | \\thread step-in |
| 971 | 972 | \\#29 |
| 972 | | \\frame variable x |
| 973 | \\frame variable --show-all-children x |
| 973 | 974 | \\thread step-in |
| 974 | 975 | \\#30 |
| 975 | | \\frame variable x |
| 976 | \\frame variable --show-all-children x |
| 976 | 977 | \\thread step-in |
| 977 | 978 | \\#31 |
| 978 | | \\frame variable x |
| 979 | \\frame variable --show-all-children x |
| 979 | 980 | \\thread step-in |
| 980 | 981 | \\#32 |
| 981 | | \\frame variable x |
| 982 | \\frame variable --show-all-children x |
| 982 | 983 | \\thread step-in |
| 983 | 984 | \\#33 |
| 984 | | \\frame variable x |
| 985 | \\frame variable --show-all-children x |
| 985 | 986 | \\thread step-in |
| 986 | 987 | \\#34 |
| 987 | | \\frame variable x |
| 988 | \\frame variable --show-all-children x |
| 988 | 989 | \\thread step-in |
| 989 | 990 | \\#35 |
| 990 | | \\frame variable x |
| 991 | \\frame variable --show-all-children x |
| 991 | 992 | \\thread step-in |
| 992 | 993 | \\#36 |
| 993 | | \\frame variable x |
| 994 | \\frame variable --show-all-children x |
| 994 | 995 | \\thread step-in |
| 995 | 996 | \\#37 |
| 996 | | \\frame variable x |
| 997 | \\frame variable --show-all-children x |
| 997 | 998 | \\thread step-in |
| 998 | 999 | \\#38 |
| 999 | | \\frame variable x |
| 1000 | \\frame variable --show-all-children x |
| 1000 | 1001 | \\thread step-in |
| 1001 | 1002 | \\#39 |
| 1002 | | \\frame variable x |
| 1003 | \\frame variable --show-all-children x |
| 1003 | 1004 | \\thread step-in |
| 1004 | 1005 | \\#40 |
| 1005 | | \\frame variable x |
| 1006 | \\frame variable --show-all-children x |
| 1006 | 1007 | \\thread step-in |
| 1007 | 1008 | \\#41 |
| 1008 | | \\frame variable x |
| 1009 | \\frame variable --show-all-children x |
| 1009 | 1010 | \\thread step-in |
| 1010 | 1011 | \\#42 |
| 1011 | | \\frame variable x |
| 1012 | \\frame variable --show-all-children x |
| 1012 | 1013 | \\thread step-in |
| 1013 | 1014 | \\#43 |
| 1014 | | \\frame variable x |
| 1015 | \\frame variable --show-all-children x |
| 1015 | 1016 | \\thread step-in |
| 1016 | 1017 | \\#44 |
| 1017 | | \\frame variable x |
| 1018 | \\frame variable --show-all-children x |
| 1018 | 1019 | \\thread step-in |
| 1019 | 1020 | \\#45 |
| 1020 | | \\frame variable x |
| 1021 | \\frame variable --show-all-children x |
| 1021 | 1022 | \\ |
| 1022 | 1023 | , |
| 1023 | 1024 | &.{ |
| 1024 | 1025 | \\(lldb) #00 |
| 1025 | | \\(lldb) frame variable x |
| 1026 | \\(lldb) frame variable --show-all-children x |
| 1026 | 1027 | \\(u32) x = 0 |
| 1027 | 1028 | \\(lldb) thread step-in |
| 1028 | 1029 | , |
| 1029 | 1030 | \\(lldb) #01 |
| 1030 | | \\(lldb) frame variable x |
| 1031 | \\(lldb) frame variable --show-all-children x |
| 1031 | 1032 | \\(u32) x = 0 |
| 1032 | 1033 | \\(lldb) thread step-in |
| 1033 | 1034 | , |
| 1034 | 1035 | \\(lldb) #02 |
| 1035 | | \\(lldb) frame variable x |
| 1036 | \\(lldb) frame variable --show-all-children x |
| 1036 | 1037 | \\(u32) x = 1 |
| 1037 | 1038 | \\(lldb) thread step-in |
| 1038 | 1039 | , |
| 1039 | 1040 | \\(lldb) #03 |
| 1040 | | \\(lldb) frame variable x |
| 1041 | \\(lldb) frame variable --show-all-children x |
| 1041 | 1042 | \\(u32) x = 1 |
| 1042 | 1043 | \\(lldb) thread step-in |
| 1043 | 1044 | , |
| 1044 | 1045 | \\(lldb) #04 |
| 1045 | | \\(lldb) frame variable x |
| 1046 | \\(lldb) frame variable --show-all-children x |
| 1046 | 1047 | \\(u32) x = 1 |
| 1047 | 1048 | \\(lldb) thread step-in |
| 1048 | 1049 | , |
| 1049 | 1050 | \\(lldb) #05 |
| 1050 | | \\(lldb) frame variable x |
| 1051 | \\(lldb) frame variable --show-all-children x |
| 1051 | 1052 | \\(u32) x = 2 |
| 1052 | 1053 | \\(lldb) thread step-in |
| 1053 | 1054 | , |
| 1054 | 1055 | \\(lldb) #06 |
| 1055 | | \\(lldb) frame variable x |
| 1056 | \\(lldb) frame variable --show-all-children x |
| 1056 | 1057 | \\(u32) x = 2 |
| 1057 | 1058 | \\(lldb) thread step-in |
| 1058 | 1059 | , |
| 1059 | 1060 | \\(lldb) #07 |
| 1060 | | \\(lldb) frame variable x |
| 1061 | \\(lldb) frame variable --show-all-children x |
| 1061 | 1062 | \\(u32) x = 2 |
| 1062 | 1063 | \\(lldb) thread step-in |
| 1063 | 1064 | , |
| 1064 | 1065 | \\(lldb) #08 |
| 1065 | | \\(lldb) frame variable x |
| 1066 | \\(lldb) frame variable --show-all-children x |
| 1066 | 1067 | \\(u32) x = 3 |
| 1067 | 1068 | \\(lldb) thread step-in |
| 1068 | 1069 | , |
| 1069 | 1070 | \\(lldb) #09 |
| 1070 | | \\(lldb) frame variable x |
| 1071 | \\(lldb) frame variable --show-all-children x |
| 1071 | 1072 | \\(u32) x = 3 |
| 1072 | 1073 | \\(lldb) thread step-in |
| 1073 | 1074 | , |
| 1074 | 1075 | \\(lldb) #10 |
| 1075 | | \\(lldb) frame variable x |
| 1076 | \\(lldb) frame variable --show-all-children x |
| 1076 | 1077 | \\(u32) x = 3 |
| 1077 | 1078 | \\(lldb) thread step-in |
| 1078 | 1079 | , |
| 1079 | 1080 | \\(lldb) #11 |
| 1080 | | \\(lldb) frame variable x |
| 1081 | \\(lldb) frame variable --show-all-children x |
| 1081 | 1082 | \\(u32) x = 3 |
| 1082 | 1083 | \\(lldb) thread step-in |
| 1083 | 1084 | , |
| 1084 | 1085 | \\(lldb) #12 |
| 1085 | | \\(lldb) frame variable x |
| 1086 | \\(lldb) frame variable --show-all-children x |
| 1086 | 1087 | \\(u32) x = 3 |
| 1087 | 1088 | \\(lldb) thread step-in |
| 1088 | 1089 | , |
| 1089 | 1090 | \\(lldb) #13 |
| 1090 | | \\(lldb) frame variable x |
| 1091 | \\(lldb) frame variable --show-all-children x |
| 1091 | 1092 | \\(u32) x = 4 |
| 1092 | 1093 | \\(lldb) thread step-in |
| 1093 | 1094 | , |
| 1094 | 1095 | \\(lldb) #14 |
| 1095 | | \\(lldb) frame variable x |
| 1096 | \\(lldb) frame variable --show-all-children x |
| 1096 | 1097 | \\(u32) x = 4 |
| 1097 | 1098 | \\(lldb) thread step-in |
| 1098 | 1099 | , |
| 1099 | 1100 | \\(lldb) #15 |
| 1100 | | \\(lldb) frame variable x |
| 1101 | \\(lldb) frame variable --show-all-children x |
| 1101 | 1102 | \\(u32) x = 4 |
| 1102 | 1103 | \\(lldb) thread step-in |
| 1103 | 1104 | , |
| 1104 | 1105 | \\(lldb) #16 |
| 1105 | | \\(lldb) frame variable x |
| 1106 | \\(lldb) frame variable --show-all-children x |
| 1106 | 1107 | \\(u32) x = 5 |
| 1107 | 1108 | \\(lldb) thread step-in |
| 1108 | 1109 | , |
| 1109 | 1110 | \\(lldb) #17 |
| 1110 | | \\(lldb) frame variable x |
| 1111 | \\(lldb) frame variable --show-all-children x |
| 1111 | 1112 | \\(u32) x = 5 |
| 1112 | 1113 | \\(lldb) thread step-in |
| 1113 | 1114 | , |
| 1114 | 1115 | \\(lldb) #18 |
| 1115 | | \\(lldb) frame variable x |
| 1116 | \\(lldb) frame variable --show-all-children x |
| 1116 | 1117 | \\(u32) x = 5 |
| 1117 | 1118 | \\(lldb) thread step-in |
| 1118 | 1119 | , |
| 1119 | 1120 | \\(lldb) #19 |
| 1120 | | \\(lldb) frame variable x |
| 1121 | \\(lldb) frame variable --show-all-children x |
| 1121 | 1122 | \\(u32) x = 6 |
| 1122 | 1123 | \\(lldb) thread step-in |
| 1123 | 1124 | , |
| 1124 | 1125 | \\(lldb) #20 |
| 1125 | | \\(lldb) frame variable x |
| 1126 | \\(lldb) frame variable --show-all-children x |
| 1126 | 1127 | \\(u32) x = 6 |
| 1127 | 1128 | \\(lldb) thread step-in |
| 1128 | 1129 | , |
| 1129 | 1130 | \\(lldb) #21 |
| 1130 | | \\(lldb) frame variable x |
| 1131 | \\(lldb) frame variable --show-all-children x |
| 1131 | 1132 | \\(u32) x = 6 |
| 1132 | 1133 | \\(lldb) thread step-in |
| 1133 | 1134 | , |
| 1134 | 1135 | \\(lldb) #22 |
| 1135 | | \\(lldb) frame variable x |
| 1136 | \\(lldb) frame variable --show-all-children x |
| 1136 | 1137 | \\(u32) x = 6 |
| 1137 | 1138 | \\(lldb) thread step-in |
| 1138 | 1139 | , |
| 1139 | 1140 | \\(lldb) #23 |
| 1140 | | \\(lldb) frame variable x |
| 1141 | \\(lldb) frame variable --show-all-children x |
| 1141 | 1142 | \\(u32) x = 6 |
| 1142 | 1143 | \\(lldb) thread step-in |
| 1143 | 1144 | , |
| 1144 | 1145 | \\(lldb) #24 |
| 1145 | | \\(lldb) frame variable x |
| 1146 | \\(lldb) frame variable --show-all-children x |
| 1146 | 1147 | \\(u32) x = 6 |
| 1147 | 1148 | \\(lldb) thread step-in |
| 1148 | 1149 | , |
| 1149 | 1150 | \\(lldb) #25 |
| 1150 | | \\(lldb) frame variable x |
| 1151 | \\(lldb) frame variable --show-all-children x |
| 1151 | 1152 | \\(u32) x = 6 |
| 1152 | 1153 | \\(lldb) thread step-in |
| 1153 | 1154 | , |
| 1154 | 1155 | \\(lldb) #26 |
| 1155 | | \\(lldb) frame variable x |
| 1156 | \\(lldb) frame variable --show-all-children x |
| 1156 | 1157 | \\(u32) x = 6 |
| 1157 | 1158 | \\(lldb) thread step-in |
| 1158 | 1159 | , |
| 1159 | 1160 | \\(lldb) #27 |
| 1160 | | \\(lldb) frame variable x |
| 1161 | \\(lldb) frame variable --show-all-children x |
| 1161 | 1162 | \\(u32) x = 6 |
| 1162 | 1163 | \\(lldb) thread step-in |
| 1163 | 1164 | , |
| 1164 | 1165 | \\(lldb) #28 |
| 1165 | | \\(lldb) frame variable x |
| 1166 | \\(lldb) frame variable --show-all-children x |
| 1166 | 1167 | \\(u32) x = 6 |
| 1167 | 1168 | \\(lldb) thread step-in |
| 1168 | 1169 | , |
| 1169 | 1170 | \\(lldb) #29 |
| 1170 | | \\(lldb) frame variable x |
| 1171 | \\(lldb) frame variable --show-all-children x |
| 1171 | 1172 | \\(u32) x = 6 |
| 1172 | 1173 | \\(lldb) thread step-in |
| 1173 | 1174 | , |
| 1174 | 1175 | \\(lldb) #30 |
| 1175 | | \\(lldb) frame variable x |
| 1176 | \\(lldb) frame variable --show-all-children x |
| 1176 | 1177 | \\(u32) x = 6 |
| 1177 | 1178 | \\(lldb) thread step-in |
| 1178 | 1179 | , |
| 1179 | 1180 | \\(lldb) #31 |
| 1180 | | \\(lldb) frame variable x |
| 1181 | \\(lldb) frame variable --show-all-children x |
| 1181 | 1182 | \\(u32) x = 6 |
| 1182 | 1183 | \\(lldb) thread step-in |
| 1183 | 1184 | , |
| 1184 | 1185 | \\(lldb) #32 |
| 1185 | | \\(lldb) frame variable x |
| 1186 | \\(lldb) frame variable --show-all-children x |
| 1186 | 1187 | \\(u32) x = 6 |
| 1187 | 1188 | \\(lldb) thread step-in |
| 1188 | 1189 | , |
| 1189 | 1190 | \\(lldb) #33 |
| 1190 | | \\(lldb) frame variable x |
| 1191 | \\(lldb) frame variable --show-all-children x |
| 1191 | 1192 | \\(u32) x = 7 |
| 1192 | 1193 | \\(lldb) thread step-in |
| 1193 | 1194 | , |
| 1194 | 1195 | \\(lldb) #34 |
| 1195 | | \\(lldb) frame variable x |
| 1196 | \\(lldb) frame variable --show-all-children x |
| 1196 | 1197 | \\(u32) x = 7 |
| 1197 | 1198 | \\(lldb) thread step-in |
| 1198 | 1199 | , |
| 1199 | 1200 | \\(lldb) #35 |
| 1200 | | \\(lldb) frame variable x |
| 1201 | \\(lldb) frame variable --show-all-children x |
| 1201 | 1202 | \\(u32) x = 8 |
| 1202 | 1203 | \\(lldb) thread step-in |
| 1203 | 1204 | , |
| 1204 | 1205 | \\(lldb) #36 |
| 1205 | | \\(lldb) frame variable x |
| 1206 | \\(lldb) frame variable --show-all-children x |
| 1206 | 1207 | \\(u32) x = 8 |
| 1207 | 1208 | \\(lldb) thread step-in |
| 1208 | 1209 | , |
| 1209 | 1210 | \\(lldb) #37 |
| 1210 | | \\(lldb) frame variable x |
| 1211 | \\(lldb) frame variable --show-all-children x |
| 1211 | 1212 | \\(u32) x = 9 |
| 1212 | 1213 | \\(lldb) thread step-in |
| 1213 | 1214 | , |
| 1214 | 1215 | \\(lldb) #38 |
| 1215 | | \\(lldb) frame variable x |
| 1216 | \\(lldb) frame variable --show-all-children x |
| 1216 | 1217 | \\(u32) x = 9 |
| 1217 | 1218 | \\(lldb) thread step-in |
| 1218 | 1219 | , |
| 1219 | 1220 | \\(lldb) #39 |
| 1220 | | \\(lldb) frame variable x |
| 1221 | \\(lldb) frame variable --show-all-children x |
| 1221 | 1222 | \\(u32) x = 10 |
| 1222 | 1223 | \\(lldb) thread step-in |
| 1223 | 1224 | , |
| 1224 | 1225 | \\(lldb) #40 |
| 1225 | | \\(lldb) frame variable x |
| 1226 | \\(lldb) frame variable --show-all-children x |
| 1226 | 1227 | \\(u32) x = 10 |
| 1227 | 1228 | \\(lldb) thread step-in |
| 1228 | 1229 | , |
| 1229 | 1230 | \\(lldb) #41 |
| 1230 | | \\(lldb) frame variable x |
| 1231 | \\(lldb) frame variable --show-all-children x |
| 1231 | 1232 | \\(u32) x = 11 |
| 1232 | 1233 | \\(lldb) thread step-in |
| 1233 | 1234 | , |
| 1234 | 1235 | \\(lldb) #42 |
| 1235 | | \\(lldb) frame variable x |
| 1236 | \\(lldb) frame variable --show-all-children x |
| 1236 | 1237 | \\(u32) x = 11 |
| 1237 | 1238 | \\(lldb) thread step-in |
| 1238 | 1239 | , |
| 1239 | 1240 | \\(lldb) #43 |
| 1240 | | \\(lldb) frame variable x |
| 1241 | \\(lldb) frame variable --show-all-children x |
| 1241 | 1242 | \\(u32) x = 12 |
| 1242 | 1243 | \\(lldb) thread step-in |
| 1243 | 1244 | , |
| 1244 | 1245 | \\(lldb) #44 |
| 1245 | | \\(lldb) frame variable x |
| 1246 | \\(lldb) frame variable --show-all-children x |
| 1246 | 1247 | \\(u32) x = 12 |
| 1247 | 1248 | \\(lldb) thread step-in |
| 1248 | 1249 | , |
| 1249 | 1250 | \\(lldb) #45 |
| 1250 | | \\(lldb) frame variable x |
| 1251 | \\(lldb) frame variable --show-all-children x |
| 1251 | 1252 | \\(u32) x = 12 |
| 1252 | 1253 | }, |
| 1253 | 1254 | ); |
| ... | ... | @@ -1567,261 +1568,261 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 1567 | 1568 | \\thread backtrace --count 3 |
| 1568 | 1569 | , |
| 1569 | 1570 | &.{ |
| 1570 | | \\ * frame #0: inline_call`root0.r0cf(r0ca=13) at root0.zig:26:5 |
| 1571 | | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:6:15 |
| 1572 | | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1571 | \\ * frame #0: inline_call`root0.r0cf(r0ca=13) at root0.zig:26:5 |
| 1572 | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:6:15 |
| 1573 | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1573 | 1574 | , |
| 1574 | | \\ * frame #0: inline_call`root0.r0pf [inlined] r0cfi(r0cai=14) at root0.zig:30:5 |
| 1575 | | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:7:16 |
| 1576 | | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1575 | \\ * frame #0: inline_call`r0cfi(r0cai=14) at root0.zig:30:5 |
| 1576 | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:7:16 |
| 1577 | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1577 | 1578 | , |
| 1578 | | \\ * frame #0: inline_call`root1.r1cf(r1ca=15) at root1.zig:26:5 |
| 1579 | | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:8:15 |
| 1580 | | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1579 | \\ * frame #0: inline_call`root1.r1cf(r1ca=15) at root1.zig:26:5 |
| 1580 | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:8:15 |
| 1581 | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1581 | 1582 | , |
| 1582 | | \\ * frame #0: inline_call`root0.r0pf [inlined] r1cfi(r1cai=8) at root1.zig:30:5 |
| 1583 | | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:9:16 |
| 1584 | | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1583 | \\ * frame #0: inline_call`r1cfi(r1cai=8) at root1.zig:30:5 |
| 1584 | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:9:16 |
| 1585 | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1585 | 1586 | , |
| 1586 | | \\ * frame #0: inline_call`mod0.m0cf(m0ca=9) at mod0.zig:26:5 |
| 1587 | | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:10:14 |
| 1588 | | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1587 | \\ * frame #0: inline_call`mod0.m0cf(m0ca=9) at mod0.zig:26:5 |
| 1588 | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:10:14 |
| 1589 | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1589 | 1590 | , |
| 1590 | | \\ * frame #0: inline_call`root0.r0pf [inlined] m0cfi(m0cai=10) at mod0.zig:30:5 |
| 1591 | | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:11:15 |
| 1592 | | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1591 | \\ * frame #0: inline_call`m0cfi(m0cai=10) at mod0.zig:30:5 |
| 1592 | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:11:15 |
| 1593 | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1593 | 1594 | , |
| 1594 | | \\ * frame #0: inline_call`mod1.m1cf(m1ca=11) at mod1.zig:26:5 |
| 1595 | | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:12:14 |
| 1596 | | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1595 | \\ * frame #0: inline_call`mod1.m1cf(m1ca=11) at mod1.zig:26:5 |
| 1596 | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:12:14 |
| 1597 | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1597 | 1598 | , |
| 1598 | | \\ * frame #0: inline_call`root0.r0pf [inlined] m1cfi(m1cai=4) at mod1.zig:30:5 |
| 1599 | | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:13:15 |
| 1600 | | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1599 | \\ * frame #0: inline_call`m1cfi(m1cai=4) at mod1.zig:30:5 |
| 1600 | \\ frame #1: inline_call`root0.r0pf(r0pa=12) at root0.zig:13:15 |
| 1601 | \\ frame #2: inline_call`root0.main at root0.zig:34:15 |
| 1601 | 1602 | , |
| 1602 | | \\ * frame #0: inline_call`root0.r0cf(r0ca=22) at root0.zig:26:5 |
| 1603 | | \\ frame #1: inline_call`root0.main [inlined] r0pfi(r0pai=23) at root0.zig:16:15 |
| 1604 | | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1603 | \\ * frame #0: inline_call`root0.r0cf(r0ca=22) at root0.zig:26:5 |
| 1604 | \\ frame #1: inline_call`r0pfi(r0pai=23) at root0.zig:16:15 |
| 1605 | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1605 | 1606 | , |
| 1606 | | \\ * frame #0: inline_call`root0.main [inlined] r0cfi(r0cai=21) at root0.zig:30:5 |
| 1607 | | \\ frame #1: inline_call`root0.main [inlined] r0pfi(r0pai=23) at root0.zig:17:16 |
| 1608 | | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1607 | \\ * frame #0: inline_call`r0cfi(r0cai=21) at root0.zig:30:5 |
| 1608 | \\ frame #1: inline_call`r0pfi(r0pai=23) at root0.zig:17:16 |
| 1609 | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1609 | 1610 | , |
| 1610 | | \\ * frame #0: inline_call`root1.r1cf(r1ca=20) at root1.zig:26:5 |
| 1611 | | \\ frame #1: inline_call`root0.main [inlined] r0pfi(r0pai=23) at root0.zig:18:15 |
| 1612 | | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1611 | \\ * frame #0: inline_call`root1.r1cf(r1ca=20) at root1.zig:26:5 |
| 1612 | \\ frame #1: inline_call`r0pfi(r0pai=23) at root0.zig:18:15 |
| 1613 | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1613 | 1614 | , |
| 1614 | | \\ * frame #0: inline_call`root0.main [inlined] r1cfi(r1cai=19) at root1.zig:30:5 |
| 1615 | | \\ frame #1: inline_call`root0.main [inlined] r0pfi(r0pai=23) at root0.zig:19:16 |
| 1616 | | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1615 | \\ * frame #0: inline_call`r1cfi(r1cai=19) at root1.zig:30:5 |
| 1616 | \\ frame #1: inline_call`r0pfi(r0pai=23) at root0.zig:19:16 |
| 1617 | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1617 | 1618 | , |
| 1618 | | \\ * frame #0: inline_call`mod0.m0cf(m0ca=18) at mod0.zig:26:5 |
| 1619 | | \\ frame #1: inline_call`root0.main [inlined] r0pfi(r0pai=23) at root0.zig:20:14 |
| 1620 | | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1619 | \\ * frame #0: inline_call`mod0.m0cf(m0ca=18) at mod0.zig:26:5 |
| 1620 | \\ frame #1: inline_call`r0pfi(r0pai=23) at root0.zig:20:14 |
| 1621 | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1621 | 1622 | , |
| 1622 | | \\ * frame #0: inline_call`root0.main [inlined] m0cfi(m0cai=17) at mod0.zig:30:5 |
| 1623 | | \\ frame #1: inline_call`root0.main [inlined] r0pfi(r0pai=23) at root0.zig:21:15 |
| 1624 | | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1623 | \\ * frame #0: inline_call`m0cfi(m0cai=17) at mod0.zig:30:5 |
| 1624 | \\ frame #1: inline_call`r0pfi(r0pai=23) at root0.zig:21:15 |
| 1625 | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1625 | 1626 | , |
| 1626 | | \\ * frame #0: inline_call`mod1.m1cf(m1ca=16) at mod1.zig:26:5 |
| 1627 | | \\ frame #1: inline_call`root0.main [inlined] r0pfi(r0pai=23) at root0.zig:22:14 |
| 1628 | | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1627 | \\ * frame #0: inline_call`mod1.m1cf(m1ca=16) at mod1.zig:26:5 |
| 1628 | \\ frame #1: inline_call`r0pfi(r0pai=23) at root0.zig:22:14 |
| 1629 | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1629 | 1630 | , |
| 1630 | | \\ * frame #0: inline_call`root0.main [inlined] m1cfi(m1cai=31) at mod1.zig:30:5 |
| 1631 | | \\ frame #1: inline_call`root0.main [inlined] r0pfi(r0pai=23) at root0.zig:23:15 |
| 1632 | | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1631 | \\ * frame #0: inline_call`m1cfi(m1cai=31) at mod1.zig:30:5 |
| 1632 | \\ frame #1: inline_call`r0pfi(r0pai=23) at root0.zig:23:15 |
| 1633 | \\ frame #2: inline_call`root0.main at root0.zig:35:16 |
| 1633 | 1634 | , |
| 1634 | | \\ * frame #0: inline_call`root0.r0cf(r0ca=35) at root0.zig:26:5 |
| 1635 | | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:6:15 |
| 1636 | | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1635 | \\ * frame #0: inline_call`root0.r0cf(r0ca=35) at root0.zig:26:5 |
| 1636 | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:6:15 |
| 1637 | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1637 | 1638 | , |
| 1638 | | \\ * frame #0: inline_call`root1.r1pf [inlined] r0cfi(r0cai=32) at root0.zig:30:5 |
| 1639 | | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:7:16 |
| 1640 | | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1639 | \\ * frame #0: inline_call`r0cfi(r0cai=32) at root0.zig:30:5 |
| 1640 | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:7:16 |
| 1641 | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1641 | 1642 | , |
| 1642 | | \\ * frame #0: inline_call`root1.r1cf(r1ca=33) at root1.zig:26:5 |
| 1643 | | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:8:15 |
| 1644 | | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1643 | \\ * frame #0: inline_call`root1.r1cf(r1ca=33) at root1.zig:26:5 |
| 1644 | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:8:15 |
| 1645 | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1645 | 1646 | , |
| 1646 | | \\ * frame #0: inline_call`root1.r1pf [inlined] r1cfi(r1cai=38) at root1.zig:30:5 |
| 1647 | | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:9:16 |
| 1648 | | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1647 | \\ * frame #0: inline_call`r1cfi(r1cai=38) at root1.zig:30:5 |
| 1648 | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:9:16 |
| 1649 | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1649 | 1650 | , |
| 1650 | | \\ * frame #0: inline_call`mod0.m0cf(m0ca=39) at mod0.zig:26:5 |
| 1651 | | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:10:14 |
| 1652 | | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1651 | \\ * frame #0: inline_call`mod0.m0cf(m0ca=39) at mod0.zig:26:5 |
| 1652 | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:10:14 |
| 1653 | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1653 | 1654 | , |
| 1654 | | \\ * frame #0: inline_call`root1.r1pf [inlined] m0cfi(m0cai=36) at mod0.zig:30:5 |
| 1655 | | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:11:15 |
| 1656 | | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1655 | \\ * frame #0: inline_call`m0cfi(m0cai=36) at mod0.zig:30:5 |
| 1656 | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:11:15 |
| 1657 | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1657 | 1658 | , |
| 1658 | | \\ * frame #0: inline_call`mod1.m1cf(m1ca=37) at mod1.zig:26:5 |
| 1659 | | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:12:14 |
| 1660 | | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1659 | \\ * frame #0: inline_call`mod1.m1cf(m1ca=37) at mod1.zig:26:5 |
| 1660 | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:12:14 |
| 1661 | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1661 | 1662 | , |
| 1662 | | \\ * frame #0: inline_call`root1.r1pf [inlined] m1cfi(m1cai=42) at mod1.zig:30:5 |
| 1663 | | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:13:15 |
| 1664 | | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1663 | \\ * frame #0: inline_call`m1cfi(m1cai=42) at mod1.zig:30:5 |
| 1664 | \\ frame #1: inline_call`root1.r1pf(r1pa=34) at root1.zig:13:15 |
| 1665 | \\ frame #2: inline_call`root0.main at root0.zig:36:15 |
| 1665 | 1666 | , |
| 1666 | | \\ * frame #0: inline_call`root0.r0cf(r0ca=44) at root0.zig:26:5 |
| 1667 | | \\ frame #1: inline_call`root0.main [inlined] r1pfi(r1pai=45) at root1.zig:16:15 |
| 1668 | | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1667 | \\ * frame #0: inline_call`root0.r0cf(r0ca=44) at root0.zig:26:5 |
| 1668 | \\ frame #1: inline_call`r1pfi(r1pai=45) at root1.zig:16:15 |
| 1669 | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1669 | 1670 | , |
| 1670 | | \\ * frame #0: inline_call`root0.main [inlined] r0cfi(r0cai=47) at root0.zig:30:5 |
| 1671 | | \\ frame #1: inline_call`root0.main [inlined] r1pfi(r1pai=45) at root1.zig:17:16 |
| 1672 | | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1671 | \\ * frame #0: inline_call`r0cfi(r0cai=47) at root0.zig:30:5 |
| 1672 | \\ frame #1: inline_call`r1pfi(r1pai=45) at root1.zig:17:16 |
| 1673 | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1673 | 1674 | , |
| 1674 | | \\ * frame #0: inline_call`root1.r1cf(r1ca=46) at root1.zig:26:5 |
| 1675 | | \\ frame #1: inline_call`root0.main [inlined] r1pfi(r1pai=45) at root1.zig:18:15 |
| 1676 | | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1675 | \\ * frame #0: inline_call`root1.r1cf(r1ca=46) at root1.zig:26:5 |
| 1676 | \\ frame #1: inline_call`r1pfi(r1pai=45) at root1.zig:18:15 |
| 1677 | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1677 | 1678 | , |
| 1678 | | \\ * frame #0: inline_call`root0.main [inlined] r1cfi(r1cai=41) at root1.zig:30:5 |
| 1679 | | \\ frame #1: inline_call`root0.main [inlined] r1pfi(r1pai=45) at root1.zig:19:16 |
| 1680 | | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1679 | \\ * frame #0: inline_call`r1cfi(r1cai=41) at root1.zig:30:5 |
| 1680 | \\ frame #1: inline_call`r1pfi(r1pai=45) at root1.zig:19:16 |
| 1681 | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1681 | 1682 | , |
| 1682 | | \\ * frame #0: inline_call`mod0.m0cf(m0ca=40) at mod0.zig:26:5 |
| 1683 | | \\ frame #1: inline_call`root0.main [inlined] r1pfi(r1pai=45) at root1.zig:20:14 |
| 1684 | | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1683 | \\ * frame #0: inline_call`mod0.m0cf(m0ca=40) at mod0.zig:26:5 |
| 1684 | \\ frame #1: inline_call`r1pfi(r1pai=45) at root1.zig:20:14 |
| 1685 | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1685 | 1686 | , |
| 1686 | | \\ * frame #0: inline_call`root0.main [inlined] m0cfi(m0cai=43) at mod0.zig:30:5 |
| 1687 | | \\ frame #1: inline_call`root0.main [inlined] r1pfi(r1pai=45) at root1.zig:21:15 |
| 1688 | | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1687 | \\ * frame #0: inline_call`m0cfi(m0cai=43) at mod0.zig:30:5 |
| 1688 | \\ frame #1: inline_call`r1pfi(r1pai=45) at root1.zig:21:15 |
| 1689 | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1689 | 1690 | , |
| 1690 | | \\ * frame #0: inline_call`mod1.m1cf(m1ca=42) at mod1.zig:26:5 |
| 1691 | | \\ frame #1: inline_call`root0.main [inlined] r1pfi(r1pai=45) at root1.zig:22:14 |
| 1692 | | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1691 | \\ * frame #0: inline_call`mod1.m1cf(m1ca=42) at mod1.zig:26:5 |
| 1692 | \\ frame #1: inline_call`r1pfi(r1pai=45) at root1.zig:22:14 |
| 1693 | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1693 | 1694 | , |
| 1694 | | \\ * frame #0: inline_call`root0.main [inlined] m1cfi(m1cai=37) at mod1.zig:30:5 |
| 1695 | | \\ frame #1: inline_call`root0.main [inlined] r1pfi(r1pai=45) at root1.zig:23:15 |
| 1696 | | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1695 | \\ * frame #0: inline_call`m1cfi(m1cai=37) at mod1.zig:30:5 |
| 1696 | \\ frame #1: inline_call`r1pfi(r1pai=45) at root1.zig:23:15 |
| 1697 | \\ frame #2: inline_call`root0.main at root0.zig:37:16 |
| 1697 | 1698 | , |
| 1698 | | \\ * frame #0: inline_call`root0.r0cf(r0ca=57) at root0.zig:26:5 |
| 1699 | | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:6:15 |
| 1700 | | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1699 | \\ * frame #0: inline_call`root0.r0cf(r0ca=57) at root0.zig:26:5 |
| 1700 | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:6:15 |
| 1701 | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1701 | 1702 | , |
| 1702 | | \\ * frame #0: inline_call`mod0.m0pf [inlined] r0cfi(r0cai=58) at root0.zig:30:5 |
| 1703 | | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:7:16 |
| 1704 | | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1703 | \\ * frame #0: inline_call`r0cfi(r0cai=58) at root0.zig:30:5 |
| 1704 | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:7:16 |
| 1705 | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1705 | 1706 | , |
| 1706 | | \\ * frame #0: inline_call`root1.r1cf(r1ca=59) at root1.zig:26:5 |
| 1707 | | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:8:15 |
| 1708 | | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1707 | \\ * frame #0: inline_call`root1.r1cf(r1ca=59) at root1.zig:26:5 |
| 1708 | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:8:15 |
| 1709 | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1709 | 1710 | , |
| 1710 | | \\ * frame #0: inline_call`mod0.m0pf [inlined] r1cfi(r1cai=60) at root1.zig:30:5 |
| 1711 | | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:9:16 |
| 1712 | | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1711 | \\ * frame #0: inline_call`r1cfi(r1cai=60) at root1.zig:30:5 |
| 1712 | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:9:16 |
| 1713 | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1713 | 1714 | , |
| 1714 | | \\ * frame #0: inline_call`mod0.m0cf(m0ca=61) at mod0.zig:26:5 |
| 1715 | | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:10:14 |
| 1716 | | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1715 | \\ * frame #0: inline_call`mod0.m0cf(m0ca=61) at mod0.zig:26:5 |
| 1716 | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:10:14 |
| 1717 | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1717 | 1718 | , |
| 1718 | | \\ * frame #0: inline_call`mod0.m0pf [inlined] m0cfi(m0cai=62) at mod0.zig:30:5 |
| 1719 | | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:11:15 |
| 1720 | | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1719 | \\ * frame #0: inline_call`m0cfi(m0cai=62) at mod0.zig:30:5 |
| 1720 | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:11:15 |
| 1721 | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1721 | 1722 | , |
| 1722 | | \\ * frame #0: inline_call`mod1.m1cf(m1ca=63) at mod1.zig:26:5 |
| 1723 | | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:12:14 |
| 1724 | | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1723 | \\ * frame #0: inline_call`mod1.m1cf(m1ca=63) at mod1.zig:26:5 |
| 1724 | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:12:14 |
| 1725 | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1725 | 1726 | , |
| 1726 | | \\ * frame #0: inline_call`mod0.m0pf [inlined] m1cfi(m1cai=48) at mod1.zig:30:5 |
| 1727 | | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:13:15 |
| 1728 | | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1727 | \\ * frame #0: inline_call`m1cfi(m1cai=48) at mod1.zig:30:5 |
| 1728 | \\ frame #1: inline_call`mod0.m0pf(m0pa=56) at mod0.zig:13:15 |
| 1729 | \\ frame #2: inline_call`root0.main at root0.zig:38:14 |
| 1729 | 1730 | , |
| 1730 | | \\ * frame #0: inline_call`root0.r0cf(r0ca=66) at root0.zig:26:5 |
| 1731 | | \\ frame #1: inline_call`root0.main [inlined] m0pfi(m0pai=67) at mod0.zig:16:15 |
| 1732 | | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1731 | \\ * frame #0: inline_call`root0.r0cf(r0ca=66) at root0.zig:26:5 |
| 1732 | \\ frame #1: inline_call`m0pfi(m0pai=67) at mod0.zig:16:15 |
| 1733 | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1733 | 1734 | , |
| 1734 | | \\ * frame #0: inline_call`root0.main [inlined] r0cfi(r0cai=65) at root0.zig:30:5 |
| 1735 | | \\ frame #1: inline_call`root0.main [inlined] m0pfi(m0pai=67) at mod0.zig:17:16 |
| 1736 | | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1735 | \\ * frame #0: inline_call`r0cfi(r0cai=65) at root0.zig:30:5 |
| 1736 | \\ frame #1: inline_call`m0pfi(m0pai=67) at mod0.zig:17:16 |
| 1737 | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1737 | 1738 | , |
| 1738 | | \\ * frame #0: inline_call`root1.r1cf(r1ca=64) at root1.zig:26:5 |
| 1739 | | \\ frame #1: inline_call`root0.main [inlined] m0pfi(m0pai=67) at mod0.zig:18:15 |
| 1740 | | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1739 | \\ * frame #0: inline_call`root1.r1cf(r1ca=64) at root1.zig:26:5 |
| 1740 | \\ frame #1: inline_call`m0pfi(m0pai=67) at mod0.zig:18:15 |
| 1741 | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1741 | 1742 | , |
| 1742 | | \\ * frame #0: inline_call`root0.main [inlined] r1cfi(r1cai=71) at root1.zig:30:5 |
| 1743 | | \\ frame #1: inline_call`root0.main [inlined] m0pfi(m0pai=67) at mod0.zig:19:16 |
| 1744 | | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1743 | \\ * frame #0: inline_call`r1cfi(r1cai=71) at root1.zig:30:5 |
| 1744 | \\ frame #1: inline_call`m0pfi(m0pai=67) at mod0.zig:19:16 |
| 1745 | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1745 | 1746 | , |
| 1746 | | \\ * frame #0: inline_call`mod0.m0cf(m0ca=70) at mod0.zig:26:5 |
| 1747 | | \\ frame #1: inline_call`root0.main [inlined] m0pfi(m0pai=67) at mod0.zig:20:14 |
| 1748 | | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1747 | \\ * frame #0: inline_call`mod0.m0cf(m0ca=70) at mod0.zig:26:5 |
| 1748 | \\ frame #1: inline_call`m0pfi(m0pai=67) at mod0.zig:20:14 |
| 1749 | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1749 | 1750 | , |
| 1750 | | \\ * frame #0: inline_call`root0.main [inlined] m0cfi(m0cai=69) at mod0.zig:30:5 |
| 1751 | | \\ frame #1: inline_call`root0.main [inlined] m0pfi(m0pai=67) at mod0.zig:21:15 |
| 1752 | | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1751 | \\ * frame #0: inline_call`m0cfi(m0cai=69) at mod0.zig:30:5 |
| 1752 | \\ frame #1: inline_call`m0pfi(m0pai=67) at mod0.zig:21:15 |
| 1753 | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1753 | 1754 | , |
| 1754 | | \\ * frame #0: inline_call`mod1.m1cf(m1ca=68) at mod1.zig:26:5 |
| 1755 | | \\ frame #1: inline_call`root0.main [inlined] m0pfi(m0pai=67) at mod0.zig:22:14 |
| 1756 | | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1755 | \\ * frame #0: inline_call`mod1.m1cf(m1ca=68) at mod1.zig:26:5 |
| 1756 | \\ frame #1: inline_call`m0pfi(m0pai=67) at mod0.zig:22:14 |
| 1757 | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1757 | 1758 | , |
| 1758 | | \\ * frame #0: inline_call`root0.main [inlined] m1cfi(m1cai=75) at mod1.zig:30:5 |
| 1759 | | \\ frame #1: inline_call`root0.main [inlined] m0pfi(m0pai=67) at mod0.zig:23:15 |
| 1760 | | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1759 | \\ * frame #0: inline_call`m1cfi(m1cai=75) at mod1.zig:30:5 |
| 1760 | \\ frame #1: inline_call`m0pfi(m0pai=67) at mod0.zig:23:15 |
| 1761 | \\ frame #2: inline_call`root0.main at root0.zig:39:15 |
| 1761 | 1762 | , |
| 1762 | | \\ * frame #0: inline_call`root0.r0cf(r0ca=79) at root0.zig:26:5 |
| 1763 | | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:6:15 |
| 1764 | | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1763 | \\ * frame #0: inline_call`root0.r0cf(r0ca=79) at root0.zig:26:5 |
| 1764 | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:6:15 |
| 1765 | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1765 | 1766 | , |
| 1766 | | \\ * frame #0: inline_call`mod1.m1pf [inlined] r0cfi(r0cai=76) at root0.zig:30:5 |
| 1767 | | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:7:16 |
| 1768 | | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1767 | \\ * frame #0: inline_call`r0cfi(r0cai=76) at root0.zig:30:5 |
| 1768 | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:7:16 |
| 1769 | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1769 | 1770 | , |
| 1770 | | \\ * frame #0: inline_call`root1.r1cf(r1ca=77) at root1.zig:26:5 |
| 1771 | | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:8:15 |
| 1772 | | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1771 | \\ * frame #0: inline_call`root1.r1cf(r1ca=77) at root1.zig:26:5 |
| 1772 | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:8:15 |
| 1773 | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1773 | 1774 | , |
| 1774 | | \\ * frame #0: inline_call`mod1.m1pf [inlined] r1cfi(r1cai=74) at root1.zig:30:5 |
| 1775 | | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:9:16 |
| 1776 | | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1775 | \\ * frame #0: inline_call`r1cfi(r1cai=74) at root1.zig:30:5 |
| 1776 | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:9:16 |
| 1777 | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1777 | 1778 | , |
| 1778 | | \\ * frame #0: inline_call`mod0.m0cf(m0ca=75) at mod0.zig:26:5 |
| 1779 | | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:10:14 |
| 1780 | | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1779 | \\ * frame #0: inline_call`mod0.m0cf(m0ca=75) at mod0.zig:26:5 |
| 1780 | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:10:14 |
| 1781 | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1781 | 1782 | , |
| 1782 | | \\ * frame #0: inline_call`mod1.m1pf [inlined] m0cfi(m0cai=72) at mod0.zig:30:5 |
| 1783 | | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:11:15 |
| 1784 | | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1783 | \\ * frame #0: inline_call`m0cfi(m0cai=72) at mod0.zig:30:5 |
| 1784 | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:11:15 |
| 1785 | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1785 | 1786 | , |
| 1786 | | \\ * frame #0: inline_call`mod1.m1cf(m1ca=73) at mod1.zig:26:5 |
| 1787 | | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:12:14 |
| 1788 | | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1787 | \\ * frame #0: inline_call`mod1.m1cf(m1ca=73) at mod1.zig:26:5 |
| 1788 | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:12:14 |
| 1789 | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1789 | 1790 | , |
| 1790 | | \\ * frame #0: inline_call`mod1.m1pf [inlined] m1cfi(m1cai=70) at mod1.zig:30:5 |
| 1791 | | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:13:15 |
| 1792 | | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1791 | \\ * frame #0: inline_call`m1cfi(m1cai=70) at mod1.zig:30:5 |
| 1792 | \\ frame #1: inline_call`mod1.m1pf(m1pa=78) at mod1.zig:13:15 |
| 1793 | \\ frame #2: inline_call`root0.main at root0.zig:40:14 |
| 1793 | 1794 | , |
| 1794 | | \\ * frame #0: inline_call`root0.r0cf(r0ca=88) at root0.zig:26:5 |
| 1795 | | \\ frame #1: inline_call`root0.main [inlined] m1pfi(m1pai=89) at mod1.zig:16:15 |
| 1796 | | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1795 | \\ * frame #0: inline_call`root0.r0cf(r0ca=88) at root0.zig:26:5 |
| 1796 | \\ frame #1: inline_call`m1pfi(m1pai=89) at mod1.zig:16:15 |
| 1797 | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1797 | 1798 | , |
| 1798 | | \\ * frame #0: inline_call`root0.main [inlined] r0cfi(r0cai=91) at root0.zig:30:5 |
| 1799 | | \\ frame #1: inline_call`root0.main [inlined] m1pfi(m1pai=89) at mod1.zig:17:16 |
| 1800 | | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1799 | \\ * frame #0: inline_call`r0cfi(r0cai=91) at root0.zig:30:5 |
| 1800 | \\ frame #1: inline_call`m1pfi(m1pai=89) at mod1.zig:17:16 |
| 1801 | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1801 | 1802 | , |
| 1802 | | \\ * frame #0: inline_call`root1.r1cf(r1ca=90) at root1.zig:26:5 |
| 1803 | | \\ frame #1: inline_call`root0.main [inlined] m1pfi(m1pai=89) at mod1.zig:18:15 |
| 1804 | | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1803 | \\ * frame #0: inline_call`root1.r1cf(r1ca=90) at root1.zig:26:5 |
| 1804 | \\ frame #1: inline_call`m1pfi(m1pai=89) at mod1.zig:18:15 |
| 1805 | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1805 | 1806 | , |
| 1806 | | \\ * frame #0: inline_call`root0.main [inlined] r1cfi(r1cai=93) at root1.zig:30:5 |
| 1807 | | \\ frame #1: inline_call`root0.main [inlined] m1pfi(m1pai=89) at mod1.zig:19:16 |
| 1808 | | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1807 | \\ * frame #0: inline_call`r1cfi(r1cai=93) at root1.zig:30:5 |
| 1808 | \\ frame #1: inline_call`m1pfi(m1pai=89) at mod1.zig:19:16 |
| 1809 | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1809 | 1810 | , |
| 1810 | | \\ * frame #0: inline_call`mod0.m0cf(m0ca=92) at mod0.zig:26:5 |
| 1811 | | \\ frame #1: inline_call`root0.main [inlined] m1pfi(m1pai=89) at mod1.zig:20:14 |
| 1812 | | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1811 | \\ * frame #0: inline_call`mod0.m0cf(m0ca=92) at mod0.zig:26:5 |
| 1812 | \\ frame #1: inline_call`m1pfi(m1pai=89) at mod1.zig:20:14 |
| 1813 | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1813 | 1814 | , |
| 1814 | | \\ * frame #0: inline_call`root0.main [inlined] m0cfi(m0cai=95) at mod0.zig:30:5 |
| 1815 | | \\ frame #1: inline_call`root0.main [inlined] m1pfi(m1pai=89) at mod1.zig:21:15 |
| 1816 | | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1815 | \\ * frame #0: inline_call`m0cfi(m0cai=95) at mod0.zig:30:5 |
| 1816 | \\ frame #1: inline_call`m1pfi(m1pai=89) at mod1.zig:21:15 |
| 1817 | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1817 | 1818 | , |
| 1818 | | \\ * frame #0: inline_call`mod1.m1cf(m1ca=94) at mod1.zig:26:5 |
| 1819 | | \\ frame #1: inline_call`root0.main [inlined] m1pfi(m1pai=89) at mod1.zig:22:14 |
| 1820 | | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1819 | \\ * frame #0: inline_call`mod1.m1cf(m1ca=94) at mod1.zig:26:5 |
| 1820 | \\ frame #1: inline_call`m1pfi(m1pai=89) at mod1.zig:22:14 |
| 1821 | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1821 | 1822 | , |
| 1822 | | \\ * frame #0: inline_call`root0.main [inlined] m1cfi(m1cai=81) at mod1.zig:30:5 |
| 1823 | | \\ frame #1: inline_call`root0.main [inlined] m1pfi(m1pai=89) at mod1.zig:23:15 |
| 1824 | | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1823 | \\ * frame #0: inline_call`m1cfi(m1cai=81) at mod1.zig:30:5 |
| 1824 | \\ frame #1: inline_call`m1pfi(m1pai=89) at mod1.zig:23:15 |
| 1825 | \\ frame #2: inline_call`root0.main at root0.zig:41:15 |
| 1825 | 1826 | }, |
| 1826 | 1827 | ); |
| 1827 | 1828 | db.addLldbTest( |
| ... | ... | @@ -1843,21 +1844,21 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 1843 | 1844 | }, |
| 1844 | 1845 | \\breakpoint set --file main.zig --source-pattern-regexp 'x = fabsf\(x\);' |
| 1845 | 1846 | \\process launch |
| 1846 | | \\frame variable -- x |
| 1847 | \\frame variable --show-all-children -- x |
| 1847 | 1848 | \\breakpoint delete --force 1 |
| 1848 | 1849 | \\ |
| 1849 | 1850 | \\breakpoint set --file main.zig --source-pattern-regexp '_ = &x;' |
| 1850 | 1851 | \\process continue |
| 1851 | | \\frame variable -- x |
| 1852 | \\frame variable --show-all-children -- x |
| 1852 | 1853 | \\breakpoint delete --force 2 |
| 1853 | 1854 | , |
| 1854 | 1855 | &.{ |
| 1855 | | \\(lldb) frame variable -- x |
| 1856 | \\(lldb) frame variable --show-all-children -- x |
| 1856 | 1857 | \\(f32) x = -1234.5 |
| 1857 | 1858 | \\(lldb) breakpoint delete --force 1 |
| 1858 | 1859 | \\1 breakpoints deleted; 0 breakpoint locations disabled. |
| 1859 | 1860 | , |
| 1860 | | \\(lldb) frame variable -- x |
| 1861 | \\(lldb) frame variable --show-all-children -- x |
| 1861 | 1862 | \\(f32) x = 1234.5 |
| 1862 | 1863 | \\(lldb) breakpoint delete --force 2 |
| 1863 | 1864 | \\1 breakpoints deleted; 0 breakpoint locations disabled. |
| ... | ... | @@ -1879,14 +1880,14 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 1879 | 1880 | \\ return lhs == rhs; |
| 1880 | 1881 | \\ } |
| 1881 | 1882 | \\}; |
| 1882 | | \\const Map = std.HashMap(u32, u32, Context, 63); |
| 1883 | \\const Map = std.HashMapUnmanaged(u32, u32, Context, 63); |
| 1883 | 1884 | \\fn testHashMap(map: Map) void { |
| 1884 | 1885 | \\ _ = map; |
| 1885 | 1886 | \\} |
| 1886 | 1887 | \\pub fn main() !void { |
| 1887 | | \\ var map = Map.init(std.heap.page_allocator); |
| 1888 | | \\ defer map.deinit(); |
| 1889 | | \\ try map.ensureTotalCapacity(10); |
| 1888 | \\ var map: Map = .empty; |
| 1889 | \\ defer map.deinit(std.heap.page_allocator); |
| 1890 | \\ try map.ensureTotalCapacity(std.heap.page_allocator, 10); |
| 1890 | 1891 | \\ map.putAssumeCapacity(0, 1); |
| 1891 | 1892 | \\ map.putAssumeCapacity(2, 3); |
| 1892 | 1893 | \\ map.putAssumeCapacity(4, 5); |
| ... | ... | @@ -1901,29 +1902,29 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 1901 | 1902 | }, |
| 1902 | 1903 | \\breakpoint set --file main.zig --source-pattern-regexp '_ = map;' |
| 1903 | 1904 | \\process launch |
| 1904 | | \\frame variable --show-types -- map.unmanaged |
| 1905 | \\frame variable --show-all-children --show-types -- map |
| 1905 | 1906 | \\breakpoint delete --force 1 |
| 1906 | 1907 | , |
| 1907 | 1908 | &.{ |
| 1908 | | \\(lldb) frame variable --show-types -- map.unmanaged |
| 1909 | | \\(std.hash_map.HashMapUnmanaged(u32,u32,main.Context,63)) map.unmanaged = len=5 capacity=16 { |
| 1910 | | \\ (std.hash_map.HashMapUnmanaged(u32,u32,main.Context,63).KV) [0] = { |
| 1909 | \\(lldb) frame variable --show-all-children --show-types -- map |
| 1910 | \\(std.hash_map.Custom(u32,u32,main.Context,63)) map = len=5 capacity=16 { |
| 1911 | \\ (std.hash_map.Custom(u32,u32,main.Context,63).KV) [0] = { |
| 1911 | 1912 | \\ (u32) .key = 0 |
| 1912 | 1913 | \\ (u32) .value = 1 |
| 1913 | 1914 | \\ } |
| 1914 | | \\ (std.hash_map.HashMapUnmanaged(u32,u32,main.Context,63).KV) [1] = { |
| 1915 | \\ (std.hash_map.Custom(u32,u32,main.Context,63).KV) [1] = { |
| 1915 | 1916 | \\ (u32) .key = 2 |
| 1916 | 1917 | \\ (u32) .value = 3 |
| 1917 | 1918 | \\ } |
| 1918 | | \\ (std.hash_map.HashMapUnmanaged(u32,u32,main.Context,63).KV) [2] = { |
| 1919 | \\ (std.hash_map.Custom(u32,u32,main.Context,63).KV) [2] = { |
| 1919 | 1920 | \\ (u32) .key = 4 |
| 1920 | 1921 | \\ (u32) .value = 5 |
| 1921 | 1922 | \\ } |
| 1922 | | \\ (std.hash_map.HashMapUnmanaged(u32,u32,main.Context,63).KV) [3] = { |
| 1923 | \\ (std.hash_map.Custom(u32,u32,main.Context,63).KV) [3] = { |
| 1923 | 1924 | \\ (u32) .key = 6 |
| 1924 | 1925 | \\ (u32) .value = 7 |
| 1925 | 1926 | \\ } |
| 1926 | | \\ (std.hash_map.HashMapUnmanaged(u32,u32,main.Context,63).KV) [4] = { |
| 1927 | \\ (std.hash_map.Custom(u32,u32,main.Context,63).KV) [4] = { |
| 1927 | 1928 | \\ (u32) .key = 8 |
| 1928 | 1929 | \\ (u32) .value = 9 |
| 1929 | 1930 | \\ } |
| ... | ... | @@ -1975,14 +1976,14 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 1975 | 1976 | }, |
| 1976 | 1977 | \\breakpoint set --file main.zig --source-pattern-regexp '_ = \.{ list0, slice0, list1, slice1 };' |
| 1977 | 1978 | \\process launch |
| 1978 | | \\frame variable --show-types -- list0 list0.len list0.capacity list0[0] list0[1] list0[2] list0.0 list0.1 list0.2 |
| 1979 | | \\frame variable --show-types -- slice0 slice0.len slice0.capacity slice0[0] slice0[1] slice0[2] slice0.0 slice0.1 slice0.2 |
| 1980 | | \\frame variable --show-types -- list1 list1.len list1.capacity list1[0] list1[1] list1[2] list1.a list1.b list1.c |
| 1981 | | \\frame variable --show-types -- slice1 slice1.len slice1.capacity slice1[0] slice1[1] slice1[2] slice1.a slice1.b slice1.c |
| 1979 | \\frame variable --show-all-children --show-types -- list0 list0.len list0.capacity list0[0] list0[1] list0[2] 'list0.@"0"' 'list0.@"1"' 'list0.@"2"' |
| 1980 | \\frame variable --show-all-children --show-types -- slice0 slice0.len slice0.capacity slice0[0] slice0[1] slice0[2] 'slice0.@"0"' 'slice0.@"1"' 'slice0.@"2"' |
| 1981 | \\frame variable --show-all-children --show-types -- list1 list1.len list1.capacity list1[0] list1[1] list1[2] list1.a list1.b list1.c |
| 1982 | \\frame variable --show-all-children --show-types -- slice1 slice1.len slice1.capacity slice1[0] slice1[1] slice1[2] slice1.a slice1.b slice1.c |
| 1982 | 1983 | \\breakpoint delete --force 1 |
| 1983 | 1984 | , |
| 1984 | 1985 | &.{ |
| 1985 | | \\(lldb) frame variable --show-types -- list0 list0.len list0.capacity list0[0] list0[1] list0[2] list0.0 list0.1 list0.2 |
| 1986 | \\(lldb) frame variable --show-all-children --show-types -- list0 list0.len list0.capacity list0[0] list0[1] list0[2] 'list0.@"0"' 'list0.@"1"' 'list0.@"2"' |
| 1986 | 1987 | \\(std.multi_array_list.MultiArrayList(struct { u32, u8, u16 })) list0 = len=3 capacity=8 { |
| 1987 | 1988 | \\ (struct { u32, u8, u16 }) [0] = { |
| 1988 | 1989 | \\ (u32) .@"0" = 1 |
| ... | ... | @@ -2017,22 +2018,22 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 2017 | 2018 | \\ (u8) .@"1" = 8 |
| 2018 | 2019 | \\ (u16) .@"2" = 9 |
| 2019 | 2020 | \\} |
| 2020 | | \\([3]u32) list0.0 = { |
| 2021 | \\([3]u32) list0.@"0" = { |
| 2021 | 2022 | \\ (u32) [0] = 1 |
| 2022 | 2023 | \\ (u32) [1] = 4 |
| 2023 | 2024 | \\ (u32) [2] = 7 |
| 2024 | 2025 | \\} |
| 2025 | | \\([3]u8) list0.1 = { |
| 2026 | \\([3]u8) list0.@"1" = { |
| 2026 | 2027 | \\ (u8) [0] = 2 |
| 2027 | 2028 | \\ (u8) [1] = 5 |
| 2028 | 2029 | \\ (u8) [2] = 8 |
| 2029 | 2030 | \\} |
| 2030 | | \\([3]u16) list0.2 = { |
| 2031 | \\([3]u16) list0.@"2" = { |
| 2031 | 2032 | \\ (u16) [0] = 3 |
| 2032 | 2033 | \\ (u16) [1] = 6 |
| 2033 | 2034 | \\ (u16) [2] = 9 |
| 2034 | 2035 | \\} |
| 2035 | | \\(lldb) frame variable --show-types -- slice0 slice0.len slice0.capacity slice0[0] slice0[1] slice0[2] slice0.0 slice0.1 slice0.2 |
| 2036 | \\(lldb) frame variable --show-all-children --show-types -- slice0 slice0.len slice0.capacity slice0[0] slice0[1] slice0[2] 'slice0.@"0"' 'slice0.@"1"' 'slice0.@"2"' |
| 2036 | 2037 | \\(std.multi_array_list.MultiArrayList(struct { u32, u8, u16 }).Slice) slice0 = len=3 capacity=8 { |
| 2037 | 2038 | \\ (struct { u32, u8, u16 }) [0] = { |
| 2038 | 2039 | \\ (u32) .@"0" = 1 |
| ... | ... | @@ -2067,22 +2068,22 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 2067 | 2068 | \\ (u8) .@"1" = 8 |
| 2068 | 2069 | \\ (u16) .@"2" = 9 |
| 2069 | 2070 | \\} |
| 2070 | | \\([3]u32) slice0.0 = { |
| 2071 | \\([3]u32) slice0.@"0" = { |
| 2071 | 2072 | \\ (u32) [0] = 1 |
| 2072 | 2073 | \\ (u32) [1] = 4 |
| 2073 | 2074 | \\ (u32) [2] = 7 |
| 2074 | 2075 | \\} |
| 2075 | | \\([3]u8) slice0.1 = { |
| 2076 | \\([3]u8) slice0.@"1" = { |
| 2076 | 2077 | \\ (u8) [0] = 2 |
| 2077 | 2078 | \\ (u8) [1] = 5 |
| 2078 | 2079 | \\ (u8) [2] = 8 |
| 2079 | 2080 | \\} |
| 2080 | | \\([3]u16) slice0.2 = { |
| 2081 | \\([3]u16) slice0.@"2" = { |
| 2081 | 2082 | \\ (u16) [0] = 3 |
| 2082 | 2083 | \\ (u16) [1] = 6 |
| 2083 | 2084 | \\ (u16) [2] = 9 |
| 2084 | 2085 | \\} |
| 2085 | | \\(lldb) frame variable --show-types -- list1 list1.len list1.capacity list1[0] list1[1] list1[2] list1.a list1.b list1.c |
| 2086 | \\(lldb) frame variable --show-all-children --show-types -- list1 list1.len list1.capacity list1[0] list1[1] list1[2] list1.a list1.b list1.c |
| 2086 | 2087 | \\(std.multi_array_list.MultiArrayList(main.Elem1)) list1 = len=3 capacity=12 { |
| 2087 | 2088 | \\ (root.main.Elem1) [0] = { |
| 2088 | 2089 | \\ (u32) .a = 1 |
| ... | ... | @@ -2132,7 +2133,7 @@ pub fn addTestsForTarget(db: *Debugger, target: *const Target) void { |
| 2132 | 2133 | \\ (u16) [1] = 6 |
| 2133 | 2134 | \\ (u16) [2] = 9 |
| 2134 | 2135 | \\} |
| 2135 | | \\(lldb) frame variable --show-types -- slice1 slice1.len slice1.capacity slice1[0] slice1[1] slice1[2] slice1.a slice1.b slice1.c |
| 2136 | \\(lldb) frame variable --show-all-children --show-types -- slice1 slice1.len slice1.capacity slice1[0] slice1[1] slice1[2] slice1.a slice1.b slice1.c |
| 2136 | 2137 | \\(std.multi_array_list.MultiArrayList(main.Elem1).Slice) slice1 = len=3 capacity=12 { |
| 2137 | 2138 | \\ (root.main.Elem1) [0] = { |
| 2138 | 2139 | \\ (u32) .a = 1 |