1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473
|
# This file is a part of Julia. License is MIT: https://julialang.org/license
import Base.copy, Base.==
using Random
using InteractiveUtils: code_llvm
import Libdl
const libccalltest = "libccalltest"
const verbose = false
ccall((:set_verbose, libccalltest), Cvoid, (Int32,), verbose)
# Test for proper argument register truncation
ccall_test_func(x) = ccall((:testUcharX, libccalltest), Int32, (UInt8,), x % UInt8)
@test ccall_test_func(3) == 1
@test ccall_test_func(259) == 1
# Test for proper round-trip of Ref{T} type
function gen_ccall_echo(x, T, U, ret=nothing)
# Construct a noninline function to do all the work, this is necessary
# to make sure object x is still valid (rooted as argument)
# when loading the pointer.
# This works as long as we still keep the argument
# rooted but might fail if we are smarter about eliminating dead root.
# `eval` in global scope to make sure the function is not a closure
func_ex = :(ccall((:test_echo_p, libccalltest), $T, ($U,), x))
# It is not allowed to allocate after the ccall returns
# and before calling `ret`.
if ret !== nothing
func_ex = :($ret($func_ex))
end
@gensym func_name
@eval @noinline $func_name(x) = $func_ex
:($func_name($(esc(x))))
end
macro ccall_echo_func(x, T, U)
gen_ccall_echo(x, T, U)
end
macro ccall_echo_load(x, T, U)
gen_ccall_echo(x, T, U, :unsafe_load)
end
macro ccall_echo_objref(x, T, U)
gen_ccall_echo(x, :(Ptr{$T}), U, :unsafe_pointer_to_objref)
end
mutable struct IntLike
x::Int
end
@test @ccall_echo_load(132, Ptr{Int}, Ref{Int}) === 132
@test @ccall_echo_load(Ref(921), Ptr{Int}, Ref{Int}) === 921
@test @ccall_echo_load(IntLike(993), Ptr{Int}, Ref{IntLike}) === 993
@test @ccall_echo_load(IntLike(881), Ptr{IntLike}, Ref{IntLike}).x === 881
@test @ccall_echo_func(532, Int, Int) === 532
if Sys.WORD_SIZE == 64
# this test is valid only for x86_64 and win64
@test @ccall_echo_func(164, IntLike, Int).x === 164
end
@test @ccall_echo_func(IntLike(828), Int, IntLike) === 828
@test @ccall_echo_func(913, Any, Any) === 913
@test @ccall_echo_objref(553, Ptr{Any}, Any) === 553
@test @ccall_echo_func(124, Ref{Int}, Any) === 124
@test @ccall_echo_load(422, Ptr{Any}, Ref{Any}) === 422
@test @ccall_echo_load([383], Ptr{Int}, Ref{Int}) === 383
@test @ccall_echo_load(Ref([144,172],2), Ptr{Int}, Ref{Int}) === 172
# @test @ccall_echo_load(Ref([8],1,1), Ptr{Int}, Ref{Int}) === 8
## Tests for passing and returning structs
let a, ci_ary, x
a = 20 + 51im
x = ccall((:ctest, libccalltest), Complex{Int}, (Complex{Int},), a)
@test x == a + 1 - 2im
ci_ary = [a] # Make sure the array is alive during unsafe_load
x = unsafe_load(ccall((:cptest, libccalltest), Ptr{Complex{Int}},
(Ptr{Complex{Int}},), ci_ary))
@test x == a + 1 - 2im
@test a == 20 + 51im
x = ccall((:cptest_static, libccalltest), Ptr{Complex{Int}}, (Ref{Complex{Int}},), a)
@test unsafe_load(x) == a
Libc.free(convert(Ptr{Cvoid}, x))
end
let a, b, x
a = 2.84 + 5.2im
x = ccall((:cgtest, libccalltest), ComplexF64, (ComplexF64,), a)
@test x == a + 1 - 2im
b = [a] # Make sure the array is alive during unsafe_load
x = unsafe_load(ccall((:cgptest, libccalltest), Ptr{ComplexF64}, (Ptr{ComplexF64},), b))
@test x == a + 1 - 2im
@test a == 2.84 + 5.2im
end
let a, b, x
a = 3.34f0 + 53.2f0im
x = ccall((:cftest, libccalltest), ComplexF32, (ComplexF32,), a)
@test x == a + 1 - 2im
b = [a] # Make sure the array is alive during unsafe_load
x = unsafe_load(ccall((:cfptest, libccalltest), Ptr{ComplexF32}, (Ptr{ComplexF32},), b))
@test x == a + 1 - 2im
@test a == 3.34f0 + 53.2f0im
end
## Tests for native Julia data types
let a
a = 2.84 + 5.2im
@test_throws MethodError ccall((:cptest, libccalltest), Ptr{Complex{Int}}, (Ptr{Complex{Int}},), a)
end
## Tests for various sized data types (ByVal)
mutable struct Struct1
x::Float32
y::Float64
end
struct Struct1I
x::Float32
y::Float64
end
copy(a::Struct1) = Struct1(a.x, a.y)
copy(a::Struct1I) = a
function test_struct1(::Type{Struct}) where {Struct}
a = Struct(352.39422f23, 19.287577)
b = Float32(123.456)
a2 = copy(a)
if Struct === Struct1
x = ccall((:test_1, libccalltest), Struct1, (Struct1, Float32), a2, b)
else
x = ccall((:test_1, libccalltest), Struct1I, (Struct1I, Float32), a2, b)
end
@test a2.x == a.x && a2.y == a.y
@test !(a2 === x)
@test x.x ≈ a.x + 1*b
@test x.y ≈ a.y - 2*b
end
test_struct1(Struct1)
test_struct1(Struct1I)
let a, b, x
a = Struct1(352.39422f23, 19.287577)
b = Float32(123.456)
a2 = copy(a)
x = ccall((:test_1long_a, libccalltest), Struct1, (Int, Int, Int, Struct1, Float32), 2, 3, 4, a2, b)
@test a2.x == a.x && a2.y == a.y
@test !(a2 === x)
@test x.x ≈ a.x + b + 9
@test x.y ≈ a.y - 2*b
x = ccall((:test_1long_b, libccalltest), Struct1, (Int, Float64, Int, Struct1, Float32), 2, 3, 4, a2, b)
@test a2.x == a.x && a2.y == a.y
@test !(a2 === x)
@test x.x ≈ a.x + b + 9
@test x.y ≈ a.y - 2*b
x = ccall((:test_1long_c, libccalltest), Struct1, (Int, Float64, Int, Int, Struct1, Float32), 2, 3, 4, 5, a2, b)
@test a2.x == a.x && a2.y == a.y
@test !(a2 === x)
@test x.x ≈ a.x + b + 14
@test x.y ≈ a.y - 2*b
end
let a, b, x, y
a = Complex{Int32}(Int32(10),Int32(31))
b = Int32(42)
x = ccall((:test_2a, libccalltest), Complex{Int32}, (Complex{Int32}, Int32), a, b)
y = ccall((:test_2b, libccalltest), Complex{Int32}, (Complex{Int32},Int32), a, b)
@test a == Complex{Int32}(Int32(10),Int32(31))
@test x == y
@test x == a + b*1 - b*2im
end
let a, b, x, y, z
a = Complex{Int64}(Int64(20),Int64(51))
b = Int64(42)
x = ccall((:test_3a, libccalltest), Complex{Int64}, (Complex{Int64}, Int64), a, b)
y = ccall((:test_3b, libccalltest), Complex{Int64}, (Complex{Int64}, Int64), a, b)
z = ccall((:test_128, libccalltest), Complex{Int64}, (Complex{Int64}, Int64), a, b)
@test a == Complex{Int64}(Int64(20),Int64(51))
@test x == y
@test x == a + b*1 - b*2im
@test z == a + 1*b
end
mutable struct Struct4
x::Int32
y::Int32
z::Int32
end
struct Struct4I
x::Int32
y::Int32
z::Int32
end
function test_struct4(::Type{Struct}) where {Struct}
a = Struct(-512275808,882558299,-2133022131)
b = Int32(42)
if Struct === Struct4
x = ccall((:test_4, libccalltest), Struct4, (Struct4, Int32), a, b)
else
x = ccall((:test_4, libccalltest), Struct4I, (Struct4I, Int32), a, b)
end
@test x.x == a.x+b*1
@test x.y == a.y-b*2
@test x.z == a.z+b*3
end
test_struct4(Struct4)
test_struct4(Struct4I)
mutable struct Struct5
x::Int32
y::Int32
z::Int32
a::Int32
end
struct Struct5I
x::Int32
y::Int32
z::Int32
a::Int32
end
function test_struct5(::Type{Struct}) where {Struct}
a = Struct(1771319039, 406394736, -1269509787, -745020976)
b = Int32(42)
if Struct === Struct5
x = ccall((:test_5, libccalltest), Struct5, (Struct5, Int32), a, b)
else
x = ccall((:test_5, libccalltest), Struct5I, (Struct5I, Int32), a, b)
end
@test x.x == a.x+b*1
@test x.y == a.y-b*2
@test x.z == a.z+b*3
@test x.a == a.a-b*4
end
test_struct5(Struct5)
test_struct5(Struct5I)
mutable struct Struct6
x::Int64
y::Int64
z::Int64
end
struct Struct6I
x::Int64
y::Int64
z::Int64
end
function test_struct6(::Type{Struct}) where {Struct}
a = Struct(-654017936452753226, -5573248801240918230, -983717165097205098)
b = Int64(42)
if Struct === Struct6
x = ccall((:test_6, libccalltest), Struct6, (Struct6, Int64), a, b)
else
x = ccall((:test_6, libccalltest), Struct6I, (Struct6I, Int64), a, b)
end
@test x.x == a.x+b*1
@test x.y == a.y-b*2
@test x.z == a.z+b*3
end
test_struct6(Struct6)
test_struct6(Struct6I)
mutable struct Struct7
x::Int64
y::Cchar
end
struct Struct7I
x::Int64
y::Cchar
end
function test_struct7(::Type{Struct}) where {Struct}
a = Struct(-384082741977533896, 'h')
b = Int8(42)
if Struct === Struct7
x = ccall((:test_7, libccalltest), Struct7, (Struct7, Int8), a, b)
else
x = ccall((:test_7, libccalltest), Struct7I, (Struct7I, Int8), a, b)
end
@test x.x == a.x+Int(b)*1
@test x.y == a.y-Int(b)*2
end
test_struct7(Struct7)
test_struct7(Struct7I)
mutable struct Struct8
x::Int32
y::Cchar
end
struct Struct8I
x::Int32
y::Cchar
end
function test_struct8(::Type{Struct}) where {Struct}
a = Struct(-384082896, 'h')
b = Int8(42)
if Struct === Struct8
r8 = ccall((:test_8, libccalltest), Struct8, (Struct8, Int8), a, b)
else
r8 = ccall((:test_8, libccalltest), Struct8I, (Struct8I, Int8), a, b)
end
@test r8.x == a.x+b*1
@test r8.y == a.y-b*2
end
test_struct8(Struct8)
test_struct8(Struct8I)
mutable struct Struct9
x::Int32
y::Int16
end
struct Struct9I
x::Int32
y::Int16
end
function test_struct9(::Type{Struct}) where {Struct}
a = Struct(-394092996, -3840)
b = Int16(42)
if Struct === Struct9
x = ccall((:test_9, libccalltest), Struct9, (Struct9, Int16), a, b)
else
x = ccall((:test_9, libccalltest), Struct9I, (Struct9I, Int16), a, b)
end
@test x.x == a.x+b*1
@test x.y == a.y-b*2
end
test_struct9(Struct9)
test_struct9(Struct9I)
mutable struct Struct10
x::Cchar
y::Cchar
z::Cchar
a::Cchar
end
struct Struct10I
x::Cchar
y::Cchar
z::Cchar
a::Cchar
end
function test_struct10(::Type{Struct}) where {Struct}
a = Struct('0', '1', '2', '3')
b = Int8(2)
if Struct === Struct10
x = ccall((:test_10, libccalltest), Struct10, (Struct10, Int8), a, b)
else
x = ccall((:test_10, libccalltest), Struct10I, (Struct10I, Int8), a, b)
end
@test x.x == a.x+b*1
@test x.y == a.y-b*2
@test x.z == a.z+b*3
@test x.a == a.a-b*4
end
test_struct10(Struct10)
test_struct10(Struct10I)
mutable struct Struct11
x::ComplexF32
end
struct Struct11I
x::ComplexF32
end
function test_struct11(::Type{Struct}) where {Struct}
a = Struct(0.8877077f0 + 0.4591081f0im)
b = Float32(42)
if Struct === Struct11
x = ccall((:test_11, libccalltest), Struct11, (Struct11, Float32), a, b)
else
x = ccall((:test_11, libccalltest), Struct11I, (Struct11I, Float32), a, b)
end
@test x.x ≈ a.x + b*1 - b*2im
end
test_struct11(Struct11)
test_struct11(Struct11I)
mutable struct Struct12
x::ComplexF32
y::ComplexF32
end
struct Struct12I
x::ComplexF32
y::ComplexF32
end
function test_struct12(::Type{Struct}) where {Struct}
a = Struct(0.8877077f5 + 0.4591081f2im, 0.0004842868f0 - 6982.3265f3im)
b = Float32(42)
if Struct === Struct12
x = ccall((:test_12, libccalltest), Struct12, (Struct12, Float32), a, b)
else
x = ccall((:test_12, libccalltest), Struct12I, (Struct12I, Float32), a, b)
end
@test x.x ≈ a.x + b*1 - b*2im
@test x.y ≈ a.y + b*3 - b*4im
end
test_struct12(Struct12)
test_struct12(Struct12I)
mutable struct Struct13
x::ComplexF64
end
struct Struct13I
x::ComplexF64
end
function test_struct13(::Type{Struct}) where {Struct}
a = Struct(42968.97560380495 - 803.0576845153616im)
b = Float64(42)
if Struct === Struct13
x = ccall((:test_13, libccalltest), Struct13, (Struct13, Float64), a, b)
else
x = ccall((:test_13, libccalltest), Struct13I, (Struct13I, Float64), a, b)
end
@test x.x ≈ a.x + b*1 - b*2im
end
test_struct13(Struct13)
test_struct13(Struct13I)
mutable struct Struct14
x::Float32
y::Float32
end
struct Struct14I
x::Float32
y::Float32
end
function test_struct14(::Type{Struct}) where {Struct}
a = Struct(0.024138331f0, 0.89759064f32)
b = Float32(42)
if Struct === Struct14
x = ccall((:test_14, libccalltest), Struct14, (Struct14, Float32), a, b)
else
x = ccall((:test_14, libccalltest), Struct14I, (Struct14I, Float32), a, b)
end
@test x.x ≈ a.x + b*1
@test x.y ≈ a.y - b*2
end
test_struct14(Struct14)
test_struct14(Struct14I)
mutable struct Struct15
x::Float64
y::Float64
end
struct Struct15I
x::Float64
y::Float64
end
function test_struct15(::Type{Struct}) where {Struct}
a = Struct(4.180997967273657, -0.404218594294923)
b = Float64(42)
if Struct === Struct15
x = ccall((:test_15, libccalltest), Struct15, (Struct15, Float64), a, b)
else
x = ccall((:test_15, libccalltest), Struct15I, (Struct15I, Float64), a, b)
end
@test x.x ≈ a.x + b*1
@test x.y ≈ a.y - b*2
end
test_struct15(Struct15)
test_struct15(Struct15I)
mutable struct Struct16
x::Float32
y::Float32
z::Float32
a::Float64
b::Float64
c::Float64
end
struct Struct16I
x::Float32
y::Float32
z::Float32
a::Float64
b::Float64
c::Float64
end
function test_struct16(::Type{Struct}) where {Struct}
a = Struct(0.1604656f0, 0.6297606f0, 0.83588994f0,
0.6460273620993535, 0.9472692581106656, 0.47328535437352093)
b = Float32(42)
if Struct === Struct16
x = ccall((:test_16, libccalltest), Struct16, (Struct16, Float32), a, b)
else
x = ccall((:test_16, libccalltest), Struct16I, (Struct16I, Float32), a, b)
end
@test x.x ≈ a.x + b*1
@test x.y ≈ a.y - b*2
@test x.z ≈ a.z + b*3
@test x.a ≈ a.a - b*4
@test x.b ≈ a.b + b*5
@test x.c ≈ a.c - b*6
end
test_struct16(Struct16)
test_struct16(Struct16I)
mutable struct Struct17
a::Int8
b::Int16
end
struct Struct17I
a::Int8
b::Int16
end
function test_struct17(::Type{Struct}) where {Struct}
a = Struct(2, 10)
b = Int8(2)
if Struct === Struct17
x = ccall((:test_17, libccalltest), Struct17, (Struct17, Int8), a, b)
else
x = ccall((:test_17, libccalltest), Struct17I, (Struct17I, Int8), a, b)
end
@test x.a == a.a + b * 1
@test x.b == a.b - b * 2
end
test_struct17(Struct17)
test_struct17(Struct17I)
mutable struct Struct18
a::Int8
b::Int8
c::Int8
end
struct Struct18I
a::Int8
b::Int8
c::Int8
end
function test_struct18(::Type{Struct}) where {Struct}
a = Struct(2, 10, -3)
b = Int8(2)
if Struct === Struct18
x = ccall((:test_18, libccalltest), Struct18, (Struct18, Int8), a, b)
else
x = ccall((:test_18, libccalltest), Struct18I, (Struct18I, Int8), a, b)
end
@test x.a == a.a + b * 1
@test x.b == a.b - b * 2
@test x.c == a.c + b * 3
end
test_struct18(Struct18)
test_struct18(Struct18I)
let a, b, x
a = Int128(0x7f00123456789abc)<<64 + typemax(UInt64)
b = Int64(1)
x = ccall((:test_128, libccalltest), Int128, (Int128, Int64), a, b)
@test x == a + b*1
@test a == Int128(0x7f00123456789abc)<<64 + typemax(UInt64)
end
mutable struct Struct_Big
x::Int
y::Int
z::Int8
end
struct Struct_BigI
x::Int
y::Int
z::Int8
end
copy(a::Struct_Big) = Struct_Big(a.x, a.y, a.z)
copy(a::Struct_BigI) = a
function test_struct_big(::Type{Struct}) where {Struct}
a = Struct(424,-5,Int8('Z'))
a2 = copy(a)
if Struct == Struct_Big
x = ccall((:test_big, libccalltest), Struct_Big, (Struct_Big,), a2)
else
x = ccall((:test_big, libccalltest), Struct_BigI, (Struct_BigI,), a2)
end
@test a2.x == a.x && a2.y == a.y && a2.z == a.z
@test x.x == a.x + 1
@test x.y == a.y - 2
@test x.z == a.z - Int('A')
end
test_struct_big(Struct_Big)
test_struct_big(Struct_BigI)
let a, a2, x
a = Struct_Big(424,-5,Int8('Z'))
a2 = copy(a)
x = ccall((:test_big_long, libccalltest), Struct_Big, (Int, Int, Int, Struct_Big,), 2, 3, 4, a2)
@test a2.x == a.x && a2.y == a.y && a2.z == a.z
@test x.x == a.x + 10
@test x.y == a.y - 2
@test x.z == a.z - Int('A')
end
const Struct_huge1a = NTuple{8, Int64}
const Struct_huge1b = NTuple{9, Int64}
const Struct_huge2a = NTuple{8, Cdouble}
const Struct_huge2b = NTuple{9, Cdouble}
mutable struct Struct_huge3a
cf::NTuple{3, Complex{Cfloat}}
f7::Cfloat
f8::Cfloat
end
mutable struct Struct_huge3b
cf::NTuple{7, Complex{Cfloat}}
r8a::Cfloat
r8b::Cfloat
end
mutable struct Struct_huge3c
cf::NTuple{7, Complex{Cfloat}}
r8a::Cfloat
r8b::Cfloat
r9::Cfloat
end
mutable struct Struct_huge4a
r12::Complex{Cdouble}
r34::Complex{Cdouble}
r5::Complex{Cfloat}
r67::Complex{Cdouble}
r8::Cdouble
end
mutable struct Struct_huge4b
r12::Complex{Cdouble}
r34::Complex{Cdouble}
r5::Complex{Cfloat}
r67::Complex{Cdouble}
r89::Complex{Cdouble}
end
const Struct_huge5a = NTuple{8, Complex{Cint}}
const Struct_huge5b = NTuple{9, Complex{Cint}}
function verify_huge(init, a, b)
@test typeof(init) === typeof(a) === typeof(b)
verbose && @show (a, b)
# make sure a was unmodified
for i = 1:nfields(a)
@test getfield(init, i) === getfield(a, i)
end
# make sure b was modified as expected
a1, b1 = getfield(a, 1), getfield(b, 1)
while isa(a1, Tuple)
@test a1[2:end] === b1[2:end]
a1 = a1[1]
b1 = b1[1]
end
if isa(a1, VecElement)
a1 = a1.value
b1 = b1.value
end
@test oftype(a1, a1 * 39) === b1
for i = 2:nfields(a)
@test getfield(a, i) === getfield(b, i)
end
end
macro test_huge(i, b, init)
f = QuoteNode(Symbol("test_huge", i, b))
ty = Symbol("Struct_huge", i, b)
return quote
let a = $ty($(esc(init))...), f
f(b) = ccall(($f, libccalltest), $ty, (Cchar, $ty, Cchar), '0' + $i, a, $b[1])
#code_llvm(f, typeof((a,)))
verify_huge($ty($(esc(init))...), a, f(a))
end
end
end
@test_huge 1 'a' ((1, 2, 3, 4, 5, 6, 7, 8),)
@test_huge 1 'b' ((1, 2, 3, 4, 5, 6, 7, 8, 9),)
@test_huge 2 'a' ((1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0),)
@test_huge 2 'b' ((1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0),)
@test_huge 3 'a' ((1.0 + 2.0im, 3.0 + 4.0im, 5.0 + 6.0im), 7.0, 8.0)
@test_huge 3 'b' ((1.0 + 2.0im, 3.0 + 4.0im, 5.0 + 6.0im, 7.0 + 8.0im, 9.0 + 10.0im, 11.0 + 12.0im, 13.0 + 14.0im), 7.0, 8.0)
@test_huge 3 'c' ((1.0 + 2.0im, 3.0 + 4.0im, 5.0 + 6.0im, 7.0 + 8.0im, 9.0 + 10.0im, 11.0 + 12.0im, 13.0 + 14.0im), 7.0, 8.0, 9.0)
@test_huge 4 'a' (1.0 + 2.0im, 3.0 + 4.0im, 5.0f0 + 6.0f0im, 7.0 + 8.0im, 9.0)
@test_huge 4 'b' (1.0 + 2.0im, 3.0 + 4.0im, 5.0f0 + 6.0f0im, 7.0 + 8.0im, 9.0 + 10.0im)
@test_huge 5 'a' ((1 + 2im, 3 + 4im, 5 + 6im, 7 + 8im, 9 + 10im, 11 + 12im, 13 + 14im, 15 + 16im),)
@test_huge 5 'b' ((1 + 2im, 3 + 4im, 5 + 6im, 7 + 8im, 9 + 10im, 11 + 12im, 13 + 14im, 15 + 16im, 17 + 17im),)
## cfunction roundtrip
verbose && Libc.flush_cstdio()
verbose && println("Testing cfunction closures: ")
# helper Type for testing that constructors work
# with cfucntion and that object identity is preserved
mutable struct IdentityTestKV{K, V}
(T::Type{<:IdentityTestKV})(S) = (@test T === S; T)
end
@noinline function testclosure(f, a::T, permanent::Bool=false, tt::Type{S}=Any) where {T, S}
@nospecialize(f, a, tt)
# generic API 1
cf = @cfunction $f Ref{T} (Ref{T},)
GC.gc()
@test cf.ptr != C_NULL
@test cf.f === f
@test (cf._1 == C_NULL) == permanent
@test (cf._2 == C_NULL) == permanent
@assert cf === Base.cconvert(Ptr{Cvoid}, cf)
GC.@preserve cf begin
fptr = Base.unsafe_convert(Ptr{Cvoid}, cf)
b = ccall(fptr, Ref{T}, (Ref{T},), a)
end
# generic API 2
cf2 = @cfunction $f Any (Ref{S},)
GC.gc()
@test cf2.ptr != C_NULL
@test cf2.f === f
@test (cf2._1 == C_NULL) == permanent
@test (cf2._2 == C_NULL) == permanent
@assert cf2 === Base.cconvert(Ptr{Cvoid}, cf2)
GC.@preserve cf2 begin
fptr = Base.unsafe_convert(Ptr{Cvoid}, cf2)
b = ccall(fptr, Any, (Ref{S},), a)
end
return b
end
# We can't (currently) execute some of these signatures (without compile-all),
# but we can at least look at some of the generated code
function check_code_trampoline(f, t, n::Int)
@nospecialize(f, t)
@test Base.return_types(f, t) == Any[Any]
llvm = sprint(code_llvm, f, t)
@test count(x -> true, eachmatch(r"@jl_get_cfunction_trampoline\(", llvm)) == n
end
check_code_trampoline(testclosure, (Any, Any, Bool, Type), 2)
check_code_trampoline(testclosure, (Any, Int, Bool, Type{Int}), 2)
check_code_trampoline(testclosure, (Any, String, Bool, Type{String}), 2)
check_code_trampoline(testclosure, (typeof(identity), Any, Bool, Type), 2)
check_code_trampoline(testclosure, (typeof(identity), Int, Bool, Type{Int}), 0)
check_code_trampoline(testclosure, (typeof(identity), String, Bool, Type{String}), 0)
function g(i)
x = -332210 + i
y = "foo"
a(z) = x
b(z) = y
c(z) = (y = z)
IdentityTestVK{V, K} = IdentityTestKV{K, V}
@test IdentityTestVK !== IdentityTestKV
@test IdentityTestVK == IdentityTestKV
for _ = 1:5
@test testclosure(a, 23) == -332210 + i
@test testclosure(b, "bar") == "foo"
@test testclosure(c, "bar") == "bar"
@test testclosure(b, "foo") == "bar"
@test testclosure(c, "foo") == "foo"
@test testclosure(identity, IdentityTestKV, true) === IdentityTestKV
@test testclosure(identity, IdentityTestVK, true) === IdentityTestVK
@test testclosure(IdentityTestKV, IdentityTestKV, true) === IdentityTestKV
@test testclosure(IdentityTestVK, IdentityTestVK, false) === IdentityTestVK
end
end
g(1)
g(2)
g(3)
verbose && println("Testing cfunction roundtrip: ")
cf64 = 2.84+5.2im
cf32 = 3.34f0+53.2f0im
ci32 = Complex{Int32}(Int32(10), Int32(31))
ci64 = Complex{Int64}(Int64(20), Int64(51))
s1 = Struct1(352.39422f23, 19.287577)
==(a::Struct1, b::Struct1) = (a.x == b.x && a.y == b.y)
for (t, v) in ((Complex{Int32}, :ci32), (Complex{Int64}, :ci64),
(ComplexF32, :cf32), (ComplexF64, :cf64), (Struct1, :s1))
fname = Symbol("foo", v)
fname1 = Symbol("foo1", v)
a = copy(@eval $v)
verbose && println(t)
verbose && println("A: ", a)
@eval begin
global function $fname1(s::$t)
verbose && println("B: ", s)
@test s == $v
@test s === $a
global c = s
return s
end
global function $fname1(s)
@assert false
end
global function $fname(s::$t)
verbose && println("B: ", s)
@test s == $v
if($(t).mutable)
@test !(s === $a)
end
global c = s
return s
end
global function $fname(s)
@assert false
end
end
@eval let a = $a, b
b = testclosure($fname1, a, true)
verbose && println("C: ", b)
@test b == $v
@test b === a
@test b === c
let cf = @cfunction($fname1, Ref{$t}, (Ref{$t},))
b = ccall(cf, Ref{$t}, (Ref{$t},), a)
end
verbose && println("C: ", b)
@test b == $v
@test b === a
@test b === c
let cf = @cfunction($fname, $t, ($t,))
b = ccall(cf, $t, ($t,), a)
end
verbose && println("C: ",b)
@test b == $v
if ($(t).mutable)
@test !(b === c)
@test !(b === a)
end
let cf = @cfunction($fname1, $t, (Ref{$t},))
b = ccall(cf, $t, (Ref{$t},), a)
end
verbose && println("C: ",b)
@test b == $v
if ($(t).mutable)
@test !(b === c)
@test !(b === a)
end
let cf = @cfunction($fname, Ref{$t}, ($t,))
b = ccall(cf, Ref{$t}, ($t,), a)
end
verbose && println("C: ",b)
@test b == $v
@test b === c
if ($(t).mutable)
@test !(b === a)
end
let cf = @cfunction($fname, Any, (Ref{$t},))
b = ccall(cf, Any, (Ref{$t},), $v)
end
verbose && println("C: ",b)
@test b == $v
@test b === c
if ($(t).mutable)
@test !(b === a)
end
let cf = @cfunction($fname, Any, (Ref{Any},))
b = ccall(cf, Any, (Ref{Any},), $v)
end
@test b == $v
@test b === c
if ($(t).mutable)
@test !(b === a)
end
let cf = @cfunction($fname, Ref{AbstractString}, (Ref{Any},))
@test_throws TypeError ccall(cf, Any, (Ref{Any},), $v)
end
let cf = @cfunction($fname, AbstractString, (Ref{Any},))
@test_throws TypeError ccall(cf, Any, (Ref{Any},), $v)
end
end
end
# issue 13031
foo13031(x) = Cint(1)
foo13031p = @cfunction(foo13031, Cint, (Ref{Tuple{}},))
ccall(foo13031p, Cint, (Ref{Tuple{}},), ())
foo13031(x,y,z) = z
foo13031p = @cfunction(foo13031, Cint, (Ref{Tuple{}}, Ref{Tuple{}}, Cint))
ccall(foo13031p, Cint, (Ref{Tuple{}},Ref{Tuple{}},Cint), (), (), 8)
# issue 17219
function ccall_reassigned_ptr(ptr::Ptr{Cvoid})
ptr = Libdl.dlsym(Libdl.dlopen(libccalltest), "test_echo_p")
ccall(ptr, Any, (Any,), "foo")
end
@test ccall_reassigned_ptr(C_NULL) == "foo"
# @threadcall functionality
threadcall_test_func(x) =
@threadcall((:testUcharX, libccalltest), Int32, (UInt8,), x % UInt8)
@test threadcall_test_func(3) == 1
@test threadcall_test_func(259) == 1
# issue 17819
# NOTE: can't use cfunction or reuse ccalltest Struct methods, as those call into the runtime
@test @threadcall((:threadcall_args, libccalltest), Cint, (Cint, Cint), 1, 2) == 3
let n=3
tids = Culong[]
@sync for i in 1:10^n
@async push!(tids, @threadcall(:uv_thread_self, Culong, ()))
end
# The work should not be done on the master thread
t0 = ccall(:uv_thread_self, Culong, ())
@test length(tids) == 10^n
for t in tids
@test t != t0
end
end
@test ccall(:jl_getpagesize, Clong, ()) == @threadcall(:jl_getpagesize, Clong, ())
# Pointer finalizer (issue #15408)
let A = [1]
ccall((:set_c_int, libccalltest), Cvoid, (Cint,), 1)
@test ccall((:get_c_int, libccalltest), Cint, ()) == 1
finalizer(cglobal((:finalizer_cptr, libccalltest), Cvoid), A)
finalize(A)
@test ccall((:get_c_int, libccalltest), Cint, ()) == -1
end
# Pointer finalizer at exit (PR #19911)
let result = read(`$(Base.julia_cmd()) --startup-file=no -e "A = Ref{Cint}(42); finalizer(cglobal((:c_exit_finalizer, \"$libccalltest\"), Cvoid), A)"`, String)
@test result == "c_exit_finalizer: 42, 0"
end
# SIMD Registers
const VecReg{N,T} = NTuple{N,VecElement{T}}
const V2xF32 = VecReg{2,Float32}
const V4xF32 = VecReg{4,Float32}
const V2xF64 = VecReg{2,Float64}
const V2xI32 = VecReg{2,Int32}
const V4xI32 = VecReg{4,Int32}
struct Struct_AA64_1
v1::Int32
v2::Int128
end
struct Struct_AA64_2
v1::Float16
v2::Float64
end
# This is a homogenious short vector aggregate
struct Struct_AA64_3
v1::VecReg{8,Int8}
v2::VecReg{2,Float32}
end
# This is NOT a homogenious short vector aggregate
struct Struct_AA64_4
v2::VecReg{2,Float32}
v1::VecReg{8,Int16}
end
mutable struct Struct_huge1_ppc64
m::Int64
v::V4xF32
end
mutable struct Struct_huge2_ppc64
v1::V4xF32
v2::V2xI32
end
mutable struct Struct_huge3_ppc64
v1::V4xF32
f::NTuple{4,Float32}
end
mutable struct Struct_huge4_ppc64
v1::V2xF32
v2::V2xF64
end
mutable struct Struct_huge5_ppc64
v1::NTuple{9,V4xF32}
end
mutable struct Struct_huge6_ppc64
v1::NTuple{8,V4xF32}
v2::V4xF32
end
mutable struct Struct_huge7_ppc64
v1::VecReg{3,Int32}
v2::VecReg{3,Int32}
end
mutable struct Struct_huge1_ppc64_hva
v1::NTuple{8,V4xF32}
end
mutable struct Struct_huge2_ppc64_hva
v1::NTuple{2,NTuple{2,V4xF32}}
end
mutable struct Struct_huge3_ppc64_hva
vf1::V4xF32
vf2::Tuple{NTuple{2,V4xF32}}
end
mutable struct Struct_huge4_ppc64_hva
v1::V4xI32
v2::V4xF32
end
mutable struct Struct_huge5_ppc64_hva
v1::V4xI32
v2::V2xF64
end
if Sys.ARCH === :x86_64
function test_sse(a1::V4xF32, a2::V4xF32, a3::V4xF32, a4::V4xF32)
ccall((:test_m128, libccalltest), V4xF32, (V4xF32, V4xF32, V4xF32, V4xF32), a1, a2, a3, a4)
end
function test_sse(a1::V4xI32, a2::V4xI32, a3::V4xI32, a4::V4xI32)
ccall((:test_m128i, libccalltest), V4xI32, (V4xI32, V4xI32, V4xI32, V4xI32), a1, a2, a3, a4)
end
foo_ams(a1, a2, a3, a4) = VecReg(ntuple(i -> VecElement(a1[i].value + a2[i].value * (a3[i].value - a4[i].value)), 4))
for s in [Float32, Int32]
T = NTuple{4, VecElement{s}}
@eval function rt_sse(a1::$T, a2::$T, a3::$T, a4::$T)
return ccall(
@cfunction(foo_ams, $T, ($T, $T, $T, $T)),
$T, ($T, $T, $T, $T),
a1, a2, a3, a4)
end
a1 = VecReg(ntuple(i -> VecElement(s(1i)), 4))
a2 = VecReg(ntuple(i -> VecElement(s(2i)), 4))
a3 = VecReg(ntuple(i -> VecElement(s(3i)), 4))
a4 = VecReg(ntuple(i -> VecElement(s(4i)), 4))
r = VecReg(ntuple(i -> VecElement(s(1i + 2i * (3i - 4i))), 4))
@test test_sse(a1, a2, a3, a4) == r
# cfunction round-trip
@test rt_sse(a1, a2, a3, a4) == r
end
elseif Sys.ARCH === :aarch64
for v1 in 1:99:1000, v2 in -100:-1999:-20000
@test ccall((:test_aa64_i128_1, libccalltest), Int128,
(Int64, Int128), v1, v2) == v1 * 2 - v2
end
for v1 in 1:4, v2 in -4:-1, v3_1 in 3:5, v3_2 in 7:9
res = ccall((:test_aa64_i128_2, libccalltest), Struct_AA64_1,
(Int64, Int128, Struct_AA64_1),
v1, v2, Struct_AA64_1(v3_1, v3_2))
expected = Struct_AA64_1(v1 ÷ 2 + 1 - v3_1, v2 * 2 - 1 - v3_2)
@test res === expected
end
for v1 in 1:4, v2 in -4:-1, v3 in 3:5, v4 in -(1:3)
res = ccall((:test_aa64_fp16_1, libccalltest), Float16,
(Cint, Float32, Float64, Float16),
v1, v2, v3, v4)
expected = Float16(v1 + v2 * 2 + v3 * 3 + v4 * 4)
@test res === expected
res = ccall((:test_aa64_fp16_2, libccalltest), Struct_AA64_2,
(Cint, Float32, Float64, Float16),
v1, v2, v3, v4)
expected = Struct_AA64_2(v4 / 2 + 1, v1 * 2 + v2 * 4 - v3)
@test res === expected
end
for v1_1 in 1:4, v1_2 in -2:2, v2 in -4:-1, v3_1 in 3:5, v3_2 in 6:8
res = ccall((:test_aa64_vec_1, libccalltest),
VecReg{2,Int64},
(VecReg{2,Int32}, Float32, VecReg{2,Int32}),
(VecElement(Int32(v1_1)), VecElement(Int32(v1_2))),
v2, (VecElement(Int32(v3_1)), VecElement(Int32(v3_2))))
expected = (VecElement(v1_1 * v2 + v3_1), VecElement(v1_2 * v2 + v3_2))
@test res === expected
end
for v1_11 in 1:4, v1_12 in -2:2, v1_21 in 1:4, v1_22 in -2:2,
v2_11 in 1:4, v2_12 in -2:2, v2_21 in 1:4, v2_22 in -2:2
v1 = Struct_AA64_3((VecElement(Int8(v1_11)), VecElement(Int8(v1_12)),
VecElement(Int8(0)), VecElement(Int8(0)),
VecElement(Int8(0)), VecElement(Int8(0)),
VecElement(Int8(0)), VecElement(Int8(0))),
(VecElement(Float32(v1_21)),
VecElement(Float32(v1_22))))
v2 = Struct_AA64_4((VecElement(Float32(v2_21)),
VecElement(Float32(v2_22))),
(VecElement(Int16(v2_11)), VecElement(Int16(v2_12)),
VecElement(Int16(0)), VecElement(Int16(0)),
VecElement(Int16(0)), VecElement(Int16(0)),
VecElement(Int16(0)), VecElement(Int16(0))))
res = ccall((:test_aa64_vec_2, libccalltest),
Struct_AA64_3, (Struct_AA64_3, Struct_AA64_4), v1, v2)
expected = Struct_AA64_3((VecElement(Int8(v1_11 + v2_11)),
VecElement(Int8(v1_12 + v2_12)),
VecElement(Int8(0)), VecElement(Int8(0)),
VecElement(Int8(0)), VecElement(Int8(0)),
VecElement(Int8(0)), VecElement(Int8(0))),
(VecElement(Float32(v1_21 - v2_21)),
VecElement(Float32(v1_22 - v2_22))))
@test res === expected
end
elseif Sys.ARCH === :powerpc64le || Sys.ARCH === :ppc64le
@test_huge 1 "_ppc64" (1, (2.0, 3.0, 4.0, 5.0),)
@test_huge 2 "_ppc64" ((1.0, 2.0, 3.0, 4.0), (11, 12))
@test_huge 3 "_ppc64" ((1, 2, 3, 4), (11.0, 12.0, 13.0, 14.0))
@test_huge 4 "_ppc64" ((1, 2), (11.0, 12.0))
@test_huge 5 "_ppc64" ((((1.0, 2.0, 3.0, 4.0),
(5.0, 6.0, 7.0, 8.0),
(11.0, 12.0, 13.0, 14.0),
(15.0, 16.0, 17.0, 18.0),
(21.0, 22.0, 23.0, 24.0),
(25.0, 26.0, 27.0, 28.0),
(31.0, 32.0, 33.0, 34.0),
(35.0, 36.0, 37.0, 38.0),
(41.0, 42.0, 43.0, 44.0)),))
@test_huge 6 "_ppc64" ((((1.0, 2.0, 3.0, 4.0),
(5.0, 6.0, 7.0, 8.0),
(11.0, 12.0, 13.0, 14.0),
(15.0, 16.0, 17.0, 18.0),
(21.0, 22.0, 23.0, 24.0),
(25.0, 26.0, 27.0, 28.0),
(31.0, 32.0, 33.0, 34.0),
(35.0, 36.0, 37.0, 38.0)),
(41.0, 42.0, 43.0, 44.0)))
@test_huge 1 "_ppc64_hva" ((((1.0, 2.0, 3.0, 4.0),
(5.0, 6.0, 7.0, 8.0),
(11.0, 12.0, 13.0, 14.0),
(15.0, 16.0, 17.0, 18.0),
(21.0, 22.0, 23.0, 24.0),
(25.0, 26.0, 27.0, 28.0),
(31.0, 32.0, 33.0, 34.0),
(35.0, 36.0, 37.0, 38.0)),))
@test_huge 2 "_ppc64_hva" (((((1.0, 2.0, 3.0, 4.0),
(5.0, 6.0, 7.0, 8.0)),
((11.0, 12.0, 13.0, 14.0),
(15.0, 16.0, 17.0, 18.0))),))
@test_huge 3 "_ppc64_hva" (((1.0, 2.0, 3.0, 4.0),
(((11.0, 12.0, 13.0, 14.0),
(15.0, 16.0, 17.0, 18.0)),)))
@test_huge 4 "_ppc64_hva" (((1, 2, 3, 4),
(11.0, 12.0, 13.0, 14.0)))
@test_huge 5 "_ppc64_hva" (((1, 2, 3, 4),
(11.0, 12.0)))
@test 18451 == ccall((:test_ppc64_vec1long, libccalltest), Int64,
(Int64, Int64, Int64, Int64, Int64, Int64, Int64, Int64, Int64, Struct_huge1_ppc64),
1, 2, 3, 4, 5, 6, 7, 8, 9, Struct_huge1_ppc64(18000, (100, 101, 102, 103)))
@test 941 == ccall((:test_ppc64_vec1long_vec, libccalltest), Int64,
(Int64, Int64, Int64, Int64, Int64, Int64, Int64, Int64, Int64, V4xF32),
11, 12, 13, 14, 15, 16, 17, 18, 19, (200, 201, 202, 203))
@test V4xF32((614232, 614218, 614204, 614190)) ==
ccall((:test_ppc64_vec2, libccalltest), V4xF32,
(Int64, V4xF32, V4xF32, V4xF32, V4xF32,
V4xF32, V4xF32, V4xF32, V4xF32, V4xF32,
V4xF32, V4xF32, V4xF32, V4xF32, V4xF32),
600000, (4, 3, 2, 1), (5, 4, 3, 2), (6, 5, 4, 3), (7, 6, 5, 4),
(14, 13, 12, 11), (15, 14, 13, 12), (16, 15, 14, 13), (17, 16, 15, 14), (18, 17, 16, 15),
(1024, 1023, 1022, 1021), (1025, 1024, 1023, 1022), (1026, 1025, 1024, 1023), (1027, 1026, 1025, 1024), (10028, 10027, 10026, 10025))
elseif Sys.ARCH !== :i686 && Sys.ARCH !== :arm # TODO
@warn "ccall: no VecReg tests run for this platform"
end
# Special calling convention for `Array`
function f17204(a)
b = similar(a)
for i in eachindex(a)
b[i] = a[i] + 10
end
return b
end
@test ccall(@cfunction(f17204, Vector{Any}, (Vector{Any},)),
Vector{Any}, (Vector{Any},), Any[1:10;]) == Any[11:20;]
# This used to trigger incorrect ccall callee inlining.
# Not sure if there's a more reliable way to test this.
# Do not put these in a function.
@noinline g17413() = rand()
@inline f17413() = (g17413(); g17413())
ccall((:test_echo_p, libccalltest), Ptr{Cvoid}, (Any,), f17413())
for i in 1:3
ccall((:test_echo_p, libccalltest), Ptr{Cvoid}, (Any,), f17413())
end
struct SpillPint
a::Ptr{Cint}
b::Ptr{Cint}
end
Base.cconvert(::Type{SpillPint}, v::NTuple{2,Cint}) =
Base.cconvert(Ref{NTuple{2,Cint}}, v)
function Base.unsafe_convert(::Type{SpillPint}, vr)
ptr = Base.unsafe_convert(Ref{NTuple{2,Cint}}, vr)
return SpillPint(ptr, ptr + 4)
end
macro test_spill_n(n::Int, intargs, floatargs)
fname_int = Symbol(:test_spill_int, n)
fname_float = Symbol(:test_spill_float, n)
quote
local ints = $(esc(intargs))
local floats = $(esc(intargs))
@test ccall(($(QuoteNode(fname_int)), libccalltest), Cint,
($((:(Ref{Cint}) for j in 1:n)...), SpillPint),
$((:(ints[$j]) for j in 1:n)...),
(ints[$n + 1], ints[$n + 2])) == sum(ints[1:($n + 2)])
@test ccall(($(QuoteNode(fname_float)), libccalltest), Float32,
($((:Float32 for j in 1:n)...), NTuple{2,Float32}),
$((:(floats[$j]) for j in 1:n)...),
(floats[$n + 1], floats[$n + 2])) == sum(floats[1:($n + 2)])
end
end
for i in 1:100
local intargs = rand(1:10000, 14)
local int32args = Int32.(intargs)
local intsum = sum(intargs)
local floatargs = rand(14)
local float32args = Float32.(floatargs)
local float32sum = sum(float32args)
local float64sum = sum(floatargs)
@test ccall((:test_long_args_intp, libccalltest), Cint,
(Ref{Cint}, Ref{Cint}, Ref{Cint}, Ref{Cint},
Ref{Cint}, Ref{Cint}, Ref{Cint}, Ref{Cint},
Ref{Cint}, Ref{Cint}, Ref{Cint}, Ref{Cint},
Ref{Cint}, Ref{Cint}),
intargs[1], intargs[2], intargs[3], intargs[4],
intargs[5], intargs[6], intargs[7], intargs[8],
intargs[9], intargs[10], intargs[11], intargs[12],
intargs[13], intargs[14]) == intsum
@test ccall((:test_long_args_int, libccalltest), Cint,
(Cint, Cint, Cint, Cint, Cint, Cint, Cint, Cint,
Cint, Cint, Cint, Cint, Cint, Cint),
intargs[1], intargs[2], intargs[3], intargs[4],
intargs[5], intargs[6], intargs[7], intargs[8],
intargs[9], intargs[10], intargs[11], intargs[12],
intargs[13], intargs[14]) == intsum
@test ccall((:test_long_args_float, libccalltest), Float32,
(Float32, Float32, Float32, Float32, Float32, Float32,
Float32, Float32, Float32, Float32, Float32, Float32,
Float32, Float32),
floatargs[1], floatargs[2], floatargs[3], floatargs[4],
floatargs[5], floatargs[6], floatargs[7], floatargs[8],
floatargs[9], floatargs[10], floatargs[11], floatargs[12],
floatargs[13], floatargs[14]) ≈ float32sum
@test ccall((:test_long_args_double, libccalltest), Float64,
(Float64, Float64, Float64, Float64, Float64, Float64,
Float64, Float64, Float64, Float64, Float64, Float64,
Float64, Float64),
floatargs[1], floatargs[2], floatargs[3], floatargs[4],
floatargs[5], floatargs[6], floatargs[7], floatargs[8],
floatargs[9], floatargs[10], floatargs[11], floatargs[12],
floatargs[13], floatargs[14]) ≈ float64sum
@test_spill_n 1 int32args float32args
@test_spill_n 2 int32args float32args
@test_spill_n 3 int32args float32args
@test_spill_n 4 int32args float32args
@test_spill_n 5 int32args float32args
@test_spill_n 6 int32args float32args
@test_spill_n 7 int32args float32args
@test_spill_n 8 int32args float32args
@test_spill_n 9 int32args float32args
@test_spill_n 10 int32args float32args
end
# issue #20835
@test_throws(ErrorException("could not evaluate ccall argument type (it might depend on a local variable)"),
eval(:(f20835(x) = ccall(:fn, Cvoid, (Ptr{typeof(x)},), x))))
@test_throws(UndefVarError(:Something_not_defined_20835),
eval(:(f20835(x) = ccall(:fn, Something_not_defined_20835, (Ptr{typeof(x)},), x))))
@noinline f21104at(::Type{T}) where {T} = ccall(:fn, Cvoid, (Some{T},), Some(0))
@noinline f21104rt(::Type{T}) where {T} = ccall(:fn, Some{T}, ())
@test code_llvm(devnull, f21104at, (Type{Float64},)) === nothing
@test code_llvm(devnull, f21104rt, (Type{Float64},)) === nothing
@test_throws(ErrorException("ccall argument 1 doesn't correspond to a C type"),
f21104at(Float64))
@test_throws(ErrorException("ccall return type doesn't correspond to a C type"),
f21104rt(Float64))
# test for malformed syntax errors
@test Expr(:error, "more arguments than types for ccall") == Meta.lower(@__MODULE__, :(ccall(:fn, A, (), x)))
@test Expr(:error, "more arguments than types for ccall") == Meta.lower(@__MODULE__, :(ccall(:fn, A, (B,), x, y)))
@test Expr(:error, "more arguments than types for ccall") == Meta.lower(@__MODULE__, :(ccall(:fn, A, (B,), x, y, z)))
@test Expr(:error, "more arguments than types for ccall") == Meta.lower(@__MODULE__, :(ccall(:fn, A, (B,), x, y)))
@test Expr(:error, "more arguments than types for ccall") == Meta.lower(@__MODULE__, :(ccall(:fn, A, (B,), x, y, z)))
@test Expr(:error, "more arguments than types for ccall") == Meta.lower(@__MODULE__, :(ccall(:fn, A, (B, C), x, y, z)))
@test Expr(:error, "more types than arguments for ccall") == Meta.lower(@__MODULE__, :(ccall(:fn, A, (B,),)))
@test Expr(:error, "more types than arguments for ccall") == Meta.lower(@__MODULE__, :(ccall(:fn, A, (B, C), )))
@test Expr(:error, "more types than arguments for ccall") == Meta.lower(@__MODULE__, :(ccall(:fn, A, (B..., C...), )))
@test Expr(:error, "only the trailing ccall argument type should have \"...\"") == Meta.lower(@__MODULE__, :(ccall(:fn, A, (B..., C...), x)))
@test Expr(:error, "only the trailing ccall argument type should have \"...\"") == Meta.lower(@__MODULE__, :(ccall(:fn, A, (B..., C...), x, y, z)))
@test Expr(:error, "more types than arguments for ccall") == Meta.lower(@__MODULE__, :(ccall(:fn, A, (B, C...), )))
# cfunction on non-function singleton
struct CallableSingleton
end
(::CallableSingleton)(x, y) = x + y
@test ccall(@cfunction(CallableSingleton(), Int, (Int, Int)),
Int, (Int, Int), 1, 2) === 3
# 19805
mutable struct callinfos_19805{FUNC_FT<:Function}
f :: FUNC_FT
end
evalf_callback_19805(ci::callinfos_19805{FUNC_FT}) where {FUNC_FT} = ci.f(0.5)::Float64
evalf_callback_c_19805(ci::callinfos_19805{FUNC_FT}) where {FUNC_FT} = @cfunction(
evalf_callback_19805, Float64, (callinfos_19805{FUNC_FT},))
@test_throws(ErrorException("cfunction argument 1 doesn't correspond to a C type"),
evalf_callback_c_19805( callinfos_19805(sin) ))
@test_throws(ErrorException("cfunction argument 2 doesn't correspond to a C type"),
@cfunction(+, Int, (Int, Nothing)))
@test_throws(ErrorException("cfunction: Vararg syntax not allowed for argument list"),
@cfunction(+, Int, (Vararg{Int},)))
@test_throws(ErrorException("could not evaluate cfunction argument type (it might depend on a local variable)"),
@eval () -> @cfunction(+, Int, (Ref{T}, Ref{T})) where T)
@test_throws(ErrorException("could not evaluate cfunction return type (it might depend on a local variable)"),
@eval () -> @cfunction(+, Ref{T}, (Int, Int)) where T)
@test_throws(ErrorException("cfunction return type Ref{Any} is invalid. Use Any or Ptr{Any} instead."),
@cfunction(+, Ref{Any}, (Int, Int)))
# test Ref{abstract_type} calling parameter passes a heap box
abstract type Abstract22734 end
struct Bits22734 <: Abstract22734
x::Int
y::Float64
end
function cb22734(ptr::Ptr{Cvoid})
GC.gc()
obj = unsafe_pointer_to_objref(ptr)::Bits22734
obj.x + obj.y
end
ptr22734 = @cfunction(cb22734, Float64, (Ptr{Cvoid},))
function caller22734(ptr)
obj = Bits22734(12, 20)
ccall(ptr, Float64, (Ref{Abstract22734},), obj)
end
@test caller22734(ptr22734) === 32.0
# 26297#issuecomment-371165725
# test that the first argument to cglobal is recognized as a tuple literal even through
# macro expansion
macro cglobal26297(sym)
:(cglobal(($(esc(sym)), libccalltest), Cint))
end
cglobal26297() = @cglobal26297(:global_var)
@test cglobal26297() != C_NULL
# issue #26607
noop_func_26607 = () -> nothing
function callthis_26607(args)
@cfunction(noop_func_26607, Cvoid, ())
return nothing
end
@test callthis_26607(Int64(0)) === nothing
@test callthis_26607(Int32(0)) === nothing
# issue #27178 (cfunction special case in inlining)
mutable struct CallThisFunc27178{FCN_TYPE}
fcn::FCN_TYPE
end
callback27178(cb::CTF) where CTF<:CallThisFunc27178 = nothing
@inline make_cfunc27178(cbi::CI) where CI = @cfunction(callback27178, Cvoid, (Ref{CI},))
get_c_func(fcn::FCN_TYPE) where {FCN_TYPE<:Function} = return make_cfunc27178(CallThisFunc27178(fcn))
@test isa(get_c_func(sin), Ptr)
# issue #27215
function once_removed()
function mycompare(a, b)::Cint
return (a < b) ? -1 : ((a > b) ? +1 : 0)
end
mycompare_c = @cfunction($mycompare, Cint, (Ref{Cdouble}, Ref{Cdouble}))
end
@test isa(once_removed(), Base.CFunction)
# issue #27478
function ccall27478()
module_lib = Libdl.dlopen("libjulia")
ccall(Libdl.dlsym(module_lib, "getpid"), Cint, ())
end
@test code_typed(ccall27478, ()) isa Array
# issue #27477
@eval module Pkg27477
const libccalltest = $libccalltest
end
module Test27477
using ..Pkg27477
test27477() = ccall((:ctest, Pkg27477.libccalltest), Complex{Int}, (Complex{Int},), 1 + 2im)
end
@test Test27477.test27477() == 2 + 0im
|