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
|
/*
RUN_OUTPUT:
---
7
83
4
4
1.000000 2.000000 3.000000
Success
---
*/
import core.stdc.stdio;
// Test function inlining
debug = NRVO;
/************************************/
int foo(int i)
{
return i;
}
int bar()
{
return foo(3) + 4;
}
void test1()
{
printf("%d\n", bar());
assert(bar() == 7);
}
/************************************/
struct Foo2
{
int a,b,c,e,f,g;
}
int foo2(Foo2 f)
{
f.b += 73;
return f.b;
}
int bar2()
{
Foo2 gg;
gg.b = 6;
return foo2(gg) + 4;
}
void test2()
{
printf("%d\n", bar2());
assert(bar2() == 83);
}
/************************************/
struct Foo3
{
int bar() { return y + 3; }
int y = 4;
}
void test3()
{
Foo3 f;
assert(f.bar() == 7);
}
/************************************/
void func(void function () v)
{
}
void test4()
{
static void f1() { }
func(&f1);
//func(f1);
}
/************************************/
void foo5(ubyte[16] array)
{
bar5(array.ptr);
}
void bar5(ubyte *array)
{
}
void abc5(ubyte[16] array)
{
foo5(array);
}
void test5()
{
}
/************************************/
struct Struct
{
real foo()
{
return 0;
}
void bar(out Struct Q)
{
if (foo() < 0)
Q = this;
}
}
void test6()
{
}
/************************************/
struct S7(T)
{
immutable(T)[] s;
}
T foo7(T)(T t)
{
enum S7!(T)[] i = [{"hello"},{"world"}];
auto x = i[0].s;
return t;
}
void test7()
{
auto x = foo7('c');
}
/************************************/
// https://issues.dlang.org/show_bug.cgi?id=10833
string fun10833(T...)()
{
foreach (v ; T)
return v;
assert(0);
}
void test10833()
{
auto a = fun10833!("bar")();
}
/************************************/
// https://issues.dlang.org/show_bug.cgi?id=4825
int a8() {
int r;
return r;
}
int b8() {
return a8();
}
void test8() {
void d() {
auto e = b8();
}
static const int f = b8();
}
/************************************/
// https://issues.dlang.org/show_bug.cgi?id=4841
auto fun4841a()
{
int i = 42;
struct Result
{
this(int u) {}
auto bar()
{
// refer context of fun4841a
return i;
}
}
return Result();
}
void test4841a()
{
auto t = fun4841a();
auto x = t.bar();
assert(x == 42);
}
auto fun4841b()
{
int i = 40;
auto foo() // hasNestedFrameRefs() == false
{
//
struct Result
{
this(int u) {}
auto bar()
{
// refer context of fun4841b
return i + 2;
}
}
return Result();
}
return foo();
}
void test4841b()
{
auto t = fun4841b();
assert(cast(void*)t.tupleof[$-1] !is null); // Result to fun4841b
auto x = t.bar();
assert(x == 42);
}
auto fun4841c()
{
int i = 40;
auto foo() // hasNestedFrameRefs() == true
{
int g = 2;
struct Result
{
this(int u) {}
auto bar()
{
// refer context of fun4841c and foo
return i + g;
}
}
return Result();
}
return foo();
}
void test4841c()
{
auto t = fun4841c();
assert( cast(void*)t.tupleof[$-1] !is null); // Result to foo
assert(*cast(void**)t.tupleof[$-1] !is null); // foo to fun4841c
auto x = t.bar();
assert(x == 42);
}
void test4841()
{
test4841a();
test4841b();
test4841c();
}
/************************************/
// https://issues.dlang.org/show_bug.cgi?id=7261
struct AbstractTask
{
ubyte taskStatus;
}
struct Task
{
AbstractTask base;
alias base this;
void opAssign(Task rhs)
{
}
~this()
{
if (taskStatus != 3) { }
}
}
/************************************/
// https://issues.dlang.org/show_bug.cgi?id=9356
void test9356()
{
static inout(char)[] bar (inout(char)[] a)
{
return a;
}
string result;
result ~= bar("abc");
assert(result == "abc");
}
/************************************/
// https://issues.dlang.org/show_bug.cgi?id=12079
void test12079()
{
string[string][string] foo;
foo.get("bar", null).get("baz", null);
}
/************************************/
// https://issues.dlang.org/show_bug.cgi?id=12243
char f12243() { return 'a'; }
void test12243()
{
string s;
s ~= f12243();
}
/************************************/
// https://issues.dlang.org/show_bug.cgi?id=11201
struct Foo11201
{
int a;
float b;
Foo11201 func()() const { return this; }
}
auto f11201()(Foo11201 a) { return a; }
void test11201()
{
auto a = Foo11201(0, 1);
assert(f11201(a.func!()()) == a);
}
/************************************/
// https://issues.dlang.org/show_bug.cgi?id=11223
struct Tuple11223(T...)
{
T values;
void opAssign(Tuple11223 rhs)
{
if (0)
values = rhs.values;
else
assert(1);
}
}
void test11223()
{
Tuple11223!string tmp;
tmp = Tuple11223!string();
}
/************************************/
void foo3918()
{
import core.stdc.stdlib : alloca;
void[] mem = alloca(1024)[0..1024];
}
void test3918()
{
foreach(i; 0 .. 10_000_000)
{
foo3918();
}
}
/************************************/
// https://issues.dlang.org/show_bug.cgi?id=11314
struct Tuple11314(T...)
{
T values;
void opAssign(typeof(this) rhs)
{
if (0)
values[] = rhs.values[];
else
assert(1);
}
}
struct S11314 {}
void test11314()
{
Tuple11314!S11314 t;
t = Tuple11314!S11314(S11314.init);
}
/************************************/
// https://issues.dlang.org/show_bug.cgi?id=11224
S11224* ptr11224;
struct S11224
{
this(int)
{
ptr11224 = &this;
/*printf("ctor &this = %p\n", &this);*/
}
this(this)
{
/*printf("cpctor &this = %p\n", &this);*/
}
int num;
}
S11224 foo11224()
{
S11224 s = S11224(1);
//printf("foo &this = %p\n", &s);
assert(ptr11224 is &s);
return s;
}
void test11224()
{
auto s = foo11224();
//printf("main &this = %p\n", &s);
assert(ptr11224 is &s);
}
/************************************/
// https://issues.dlang.org/show_bug.cgi?id=11322
bool b11322;
uint n11322;
ref uint fun11322()
{
if (b11322)
return n11322;
else
return n11322;
}
void test11322()
{
fun11322()++;
assert(n11322 == 1);
fun11322() *= 5;
assert(n11322 == 5);
}
/************************************/
// https://issues.dlang.org/show_bug.cgi?id=11394
debug(NRVO) static void* p11394a, p11394b, p11394c;
static int[5] make11394(in int x) pure
{
typeof(return) a;
a[0] = x;
a[1] = x + 1;
a[2] = x + 2;
a[3] = x + 3;
a[4] = x + 4;
debug(NRVO) p11394a = cast(void*)a.ptr;
return a;
}
struct Bar11394
{
immutable int[5] arr;
this(int x)
{
this.arr = make11394(x); // NRVO should work
debug(NRVO) p11394b = cast(void*)this.arr.ptr;
}
}
void test11394()
{
auto b = Bar11394(5);
debug(NRVO) p11394c = cast(void*)b.arr.ptr;
//debug(NRVO) printf("p1 = %p\np2 = %p\np3 = %p\n", p11394a, p11394b, p11394c);
debug(NRVO) assert(p11394a == p11394b);
debug(NRVO) assert(p11394b == p11394c);
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=12080
class TZ12080 {}
struct ST12080
{
ST12080 opBinary()() const pure nothrow
{
auto retval = ST12080();
return retval; // NRVO
}
long _stdTime;
immutable TZ12080 _timezone;
}
class Foo12080
{
ST12080 bar;
bool quux;
public ST12080 sysTime()
out {}
do
{
if (quux)
return ST12080();
return bar.opBinary();
// returned value is set to __result
// --> Inliner wrongly created the second DeclarationExp for __result.
}
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=13503
void f13503a(string[] s...)
{
assert(s[0] == "Cheese");
}
auto f13503b(string arg)
{
string result = arg;
return result;
}
string f13503c(string arg)
{
string result = arg;
return result;
}
void test13503()
{
f13503a(f13503b("Cheese"));
f13503a(f13503c("Cheese"));
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=14267
// EXTRA_SOURCES: imports/a14267.d
import imports.a14267;
void test14267()
{
foreach (m; __traits(allMembers, SysTime14267))
{
static if (is(typeof(__traits(getMember, SysTime14267, m))))
{
foreach (func; __traits(getOverloads, SysTime14267, m))
{
auto prot = __traits(getProtection, func);
static if (__traits(isStaticFunction, func))
{
static assert(func.stringof == "min()");
auto result = func;
}
}
}
}
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=13244
struct MapResult13244(alias fun)
{
int[] input;
@property front() { return fun(input[0]); }
}
int[] array13244(R)(R r)
{
int[] a;
a ~= r.front;
return a;
}
void test13244()
{
auto arr = [[cast(ubyte)1]];
foreach (ref x; arr)
{
auto m = MapResult13244!(c => x[c])([0]);
array13244(m);
}
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=14306
struct MapResult(alias fun)
{
void front()
{
// while (1) { break; }
fun(1);
}
}
void bar(R)(R r)
{
foreach (i; 0..100)
{
r.front();
}
}
struct S
{
int x;
int bump()
{
while (1) { break; }
++x;
return x;
}
}
void fun(ref S s)
{
MapResult!(y => s.bump())().bar;
// MapResult!((int x) => s.bump())().bar;
if (s.x != 100)
assert(0);
}
void test14306()
{
S t;
fun(t);
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=14754
auto aafunc14754(string k)
{
enum aa = [ "K": "V" ];
auto p = k in aa;
return null;
}
struct MapResult14754(alias fun, R)
{
R _input;
@property auto ref front()
{
return fun(_input[0]);
}
}
auto array14754(R)(R r)
{
alias E = typeof(r.front);
E[] result;
result ~= r.front;
return result;
}
auto mapfun14754(R)(R words, string k)
{
return array14754(MapResult14754!(s => aafunc14754(k), R)(words));
}
void test14754()
{
auto r = mapfun14754([""], "");
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=14606
struct S14606
{
this(long stdTime)
{
_stdTime = stdTime;
}
long _stdTime;
}
S14606 getS14606()
{
S14606 sysTime = S14606(0);
return sysTime;
}
struct T14606
{
this(string)
{
uint[3] arr;
s = getS14606();
}
S14606 s;
}
void test14606()
{
auto t = T14606(null);
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=14753
pragma(inline)
void test14753(string) { }
/**********************************/
struct S14975
{
int bar;
pragma(inline, true) this(int bar)
{
this.bar = bar;
}
}
void test14975()
{
S14975 baz = 1;
if (baz.bar != 1)
assert(0);
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=15210
struct BigInt15210 {}
struct Tuple15210(Types...)
{
Types field;
void opAssign(R)(R rhs)
{
field = rhs.field;
}
}
void test15210()
{
alias X = Tuple15210!BigInt15210;
X[BigInt15210] cache;
auto x = X();
cache[BigInt15210()] = x;
}
/**********************************/
int foo7625(int v)
{
return bar7625(2 * v);
}
int bar7625(int a)
{
++a;
if (a > 0)
return 1;
return baz(a);
}
int baz(int a)
{
if (a > 0)
throw new Exception("a > 0");
return a - 1;
}
void test7625()
{
int x = foo7625(1);
if (x != 1)
assert(0);
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=9785 partial fix
void test9785()
{
int j = 3;
void loop(scope const void function(int x) dg) {
pragma(inline, true);
dg(++j);
}
loop((x) {
pragma(inline, true);
printf("%d\n", x);
assert(x == 4);
});
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=9785 partial fix
void test9785_2() {
int j = 3;
void loop(scope const void function(int x) dg) {
pragma(inline, true);
dg(++j);
}
static void func(int x) {
pragma(inline, true);
printf("%d\n", x);
assert(x == 4);
}
loop(&func);
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=9785 partial fix
void test9785_3() @nogc
{
int j = 3;
void loop(scope const void delegate(int x) @nogc dg) @nogc {
pragma(inline, true);
dg(++j);
}
loop((x) @nogc {
pragma(inline, true);
//printf("%d\n", x + j * 2);
assert(x == 4);
assert(j == 4);
});
j = 3;
void func(int x) @nogc {
pragma(inline, true);
//printf("%d\n", x + j * 2);
assert(x == 4);
assert(j == 4);
}
loop(&func);
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=15207
struct Vec15207
{
float x, y, z;
this(float x_, float y_, float z_)
{
x = x_;
y = y_;
z = z_;
}
Vec15207 clone()
{
// When the variable 'res' is replaced with a STCref temporary,
// this line was accidentally changed to reference initialization.
Vec15207 res = this;
return res;
}
}
class C15207
{
Vec15207 a;
this()
{
a = Vec15207(1, 2, 3).clone();
assert(a.x == 1);
assert(a.y == 2);
assert(a.z == 3);
printf("%f %f %f\n", a.x, a.y, a.z);
}
}
void test15207()
{
auto c = new C15207();
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=15253
struct MessageType15253
{
MessageType15253[] messageTypes;
const void toString1(scope void delegate(const(char)[]) sink)
{
messageTypes[0].toString1(sink);
}
}
struct ProtoPackage15253
{
MessageType15253[] messageTypes;
const void toString1(scope void delegate(const(char)[]) sink)
{
messageTypes[0].toString1(sink);
}
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=15296
static int x15296;
struct S15296
{
// Can be expanded only as statements.
pragma(inline, true)
void bar(size_t , size_t )
{
for (size_t w = 0; w < 2; w++) { ++x15296; }
}
pragma(inline, true)
void foo(size_t a, size_t b)
{
bar(a, b);
}
}
pragma(inline, true)
static void voidCall15296()
{
for (size_t w = 0; w < 3; w++) { ++x15296; }
}
void test15296()
{
bool cond = true;
S15296 s;
// CallExp at the top of ExpStatement
x15296 = 0;
s.foo(0, 0);
assert(x15296 == 2);
// CondExp at the top of ExpStatement
x15296 = 0;
(cond ? s.foo(0, 0) : voidCall15296());
assert(x15296 == 2);
(cond ? voidCall15296() : s.foo(0, 0));
assert(x15296 == 2 + 3);
// CommaExp at the top of ExpStatement
x15296 = 0;
(s.foo(0, 0), voidCall15296());
assert(x15296 == 3 + 2);
}
// ----
struct File15296
{
struct Impl {}
Impl* _p;
pragma(inline, true)
~this() { _p = null; }
struct LockingTextWriter
{
pragma(inline, true)
this(ref File15296 f)
{
assert(f._p, "Attempting to write to closed File");
}
}
pragma(inline, true)
auto lockingTextWriter() { return LockingTextWriter(this); }
pragma(inline, true)
void write() { auto w = lockingTextWriter(); }
//pragma(inline, true)
static uint formattedWrite(Writer)(Writer w) { return 0; }
pragma(inline, true)
void writef() { formattedWrite(lockingTextWriter()); }
}
__gshared File15296 stdout15296 = {new File15296.Impl()};
pragma(inline, true)
@property File15296 trustedStdout15296() { return stdout15296; }
// ----
// reduced case from runnable/test34.d test34()
void test15296b()
{
// trustedStdout() returns a temporary File object. Its dtor call
// should be deferred till the end of expanded writef body statements.
trustedStdout15296().writef();
}
// ----
// reduced case from runnable/xtest46.d test136()
struct Perm15296c
{
this(byte[] input)
{
foreach (elem; input)
{
// if vthis.isDataseg() is true in expandInline,
// its edtor should not be called.
stdout15296.write();
}
}
}
void test15296c()
{
auto perm2 = Perm15296c([0, 1, 2]);
}
/**********************************/
// https://issues.dlang.org/show_bug.cgi?id=17676
__gshared bool bgEnable = 1;
void test17676() nothrow
{
fullcollect();
}
size_t fullcollect() nothrow
{
if(bgEnable)
return fullcollectTrigger();
return fullcollectNow();
}
size_t fullcollectNow() nothrow
{
if (bgEnable)
assert(0);
pragma(inline, false);
return 1;
}
size_t fullcollectTrigger() nothrow
{
pragma(inline, false);
return 0;
}
/**********************************/
int main()
{
test1();
test2();
test3();
test3918();
test4();
test5();
test9356();
test6();
test7();
test8();
test4841();
test11201();
test11223();
test11314();
test11224();
test11322();
test11394();
test13503();
test13244();
test14306();
test14754();
test14606();
test14975();
test15210();
test7625();
test9785();
test9785_2();
test9785_3();
test15207();
test15296();
test15296b();
test15296c();
test17676();
printf("Success\n");
return 0;
}
|