summaryrefslogtreecommitdiff
path: root/byterun/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'byterun/array.c')
-rw-r--r--byterun/array.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/byterun/array.c b/byterun/array.c
new file mode 100644
index 0000000000..471bfa1541
--- /dev/null
+++ b/byterun/array.c
@@ -0,0 +1,45 @@
+/* Operations on arrays */
+
+#include "alloc.h"
+#include "fail.h"
+#include "memory.h"
+#include "misc.h"
+#include "mlvalues.h"
+
+value make_vect(len, init) /* ML */
+ value len, init;
+{
+ value res;
+ mlsize_t size, i;
+ Push_roots(root, 1);
+
+ size = Long_val(len);
+ if (size > Max_wosize) {
+ Pop_roots();
+ invalid_argument("Array.new");
+ }
+ if (size == 0) {
+ res = Atom(0);
+ }
+ else if (size < Max_young_wosize) {
+ root[0] = init;
+ res = alloc(size, 0);
+ init = root[0];
+ for (i = 0; i < size; i++) Field(res, i) = init;
+ }
+ else if (Is_block(init) && Is_young(init)) {
+ root[0] = init;
+ minor_collection();
+ res = alloc_shr(size, 0);
+ init = root[0];
+ for (i = 0; i < size; i++) Field(res, i) = init;
+ }
+ else {
+ root[0] = init;
+ res = alloc_shr(size, 0);
+ init = root[0];
+ for (i = 0; i < size; i++) initialize(&Field(res, i), init);
+ }
+ Pop_roots();
+ return res;
+}