annotate tests/mini/multiarr1.d @ 715:30b42a283c8e

Removed TypeOpaque from DMD. Changed runtime functions taking opaque[] to void[]. Implemented proper type painting, to avoid "resizing" array casts in runtime calls that previously took opaque[]. Implemented dynamic arrays as first class types, this implements proper ABI for these types on x86. Added dwarf region end after call to assert function, fixes some problems with llvm not allowing this to be missing. Reverted change to WithStatement from rev [704] it breaks MiniD, mini/with2.d needs to be fixed some other way... Fixed tango bug 1339 in runtime, problem with _adReverseChar on invalid UTF-8. Disabled .bc generation in the compiler runtime part, genobj.d triggers some llvm bug when using debug info. the .o seems to work fine.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Wed, 22 Oct 2008 14:55:33 +0200
parents 1bb99290e03a
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
64
b688ad419f8c [svn r68] Added support for multi-dimensional static arrays.
lindquist
parents:
diff changeset
1 module multiarr1;
b688ad419f8c [svn r68] Added support for multi-dimensional static arrays.
lindquist
parents:
diff changeset
2
b688ad419f8c [svn r68] Added support for multi-dimensional static arrays.
lindquist
parents:
diff changeset
3 void main()
b688ad419f8c [svn r68] Added support for multi-dimensional static arrays.
lindquist
parents:
diff changeset
4 {
b688ad419f8c [svn r68] Added support for multi-dimensional static arrays.
lindquist
parents:
diff changeset
5 int[16][16] a;
339
385a18242485 [svn r360] Another mostly rewrite of DtoArrayInit. Should be much more robust now, and probably faster code generated for the most common cases too!
lindquist
parents: 94
diff changeset
6 assert(a[0][0] == 0);
385a18242485 [svn r360] Another mostly rewrite of DtoArrayInit. Should be much more robust now, and probably faster code generated for the most common cases too!
lindquist
parents: 94
diff changeset
7 assert(a[0][1] == 0);
385a18242485 [svn r360] Another mostly rewrite of DtoArrayInit. Should be much more robust now, and probably faster code generated for the most common cases too!
lindquist
parents: 94
diff changeset
8 assert(a[0][2] == 0);
385a18242485 [svn r360] Another mostly rewrite of DtoArrayInit. Should be much more robust now, and probably faster code generated for the most common cases too!
lindquist
parents: 94
diff changeset
9 assert(a[0][3] == 0);
385a18242485 [svn r360] Another mostly rewrite of DtoArrayInit. Should be much more robust now, and probably faster code generated for the most common cases too!
lindquist
parents: 94
diff changeset
10 assert(a[10][13] == 0);
385a18242485 [svn r360] Another mostly rewrite of DtoArrayInit. Should be much more robust now, and probably faster code generated for the most common cases too!
lindquist
parents: 94
diff changeset
11 assert(a[15][15] == 0);
64
b688ad419f8c [svn r68] Added support for multi-dimensional static arrays.
lindquist
parents:
diff changeset
12 a[10][13] = 42;
339
385a18242485 [svn r360] Another mostly rewrite of DtoArrayInit. Should be much more robust now, and probably faster code generated for the most common cases too!
lindquist
parents: 94
diff changeset
13 assert(a[0][0] == 0);
385a18242485 [svn r360] Another mostly rewrite of DtoArrayInit. Should be much more robust now, and probably faster code generated for the most common cases too!
lindquist
parents: 94
diff changeset
14 assert(a[10][13] == 42);
385a18242485 [svn r360] Another mostly rewrite of DtoArrayInit. Should be much more robust now, and probably faster code generated for the most common cases too!
lindquist
parents: 94
diff changeset
15 assert(a[15][15] == 0);
94
61615fa85940 [svn r98] Added support for std.c.stdlib.alloca via pragma(LLVM_internal, "alloca").
lindquist
parents: 64
diff changeset
16 {
61615fa85940 [svn r98] Added support for std.c.stdlib.alloca via pragma(LLVM_internal, "alloca").
lindquist
parents: 64
diff changeset
17 int* l = cast(int*)a;
61615fa85940 [svn r98] Added support for std.c.stdlib.alloca via pragma(LLVM_internal, "alloca").
lindquist
parents: 64
diff changeset
18 l += 10*16+13;
61615fa85940 [svn r98] Added support for std.c.stdlib.alloca via pragma(LLVM_internal, "alloca").
lindquist
parents: 64
diff changeset
19 assert(*l == 42);
61615fa85940 [svn r98] Added support for std.c.stdlib.alloca via pragma(LLVM_internal, "alloca").
lindquist
parents: 64
diff changeset
20 }
64
b688ad419f8c [svn r68] Added support for multi-dimensional static arrays.
lindquist
parents:
diff changeset
21 }