Increase size of bootstrap bytes as some Linux distributions need more space.
authorBrian Demsky <bdemsky@uci.edu>
Thu, 15 Dec 2016 00:30:00 +0000 (16:30 -0800)
committerBrian Demsky <bdemsky@uci.edu>
Thu, 15 Dec 2016 00:30:00 +0000 (16:30 -0800)
mymemory.cc
test/load_in_if_cond.c [deleted file]

index d911f5d348c1f49132549f35c9a4e1b3a050d4c0..8d95dfa68e2277f60f9cd4287ae62ec6499c780b 100644 (file)
@@ -159,7 +159,7 @@ void model_free(void *ptr)
 /** Bootstrap allocation. Problem is that the dynamic linker calls require
  *  calloc to work and calloc requires the dynamic linker to work. */
 
 /** Bootstrap allocation. Problem is that the dynamic linker calls require
  *  calloc to work and calloc requires the dynamic linker to work. */
 
-#define BOOTSTRAPBYTES 4096
+#define BOOTSTRAPBYTES 131072
 char bootstrapmemory[BOOTSTRAPBYTES];
 size_t offset = 0;
 
 char bootstrapmemory[BOOTSTRAPBYTES];
 size_t offset = 0;
 
@@ -169,7 +169,7 @@ void * HandleEarlyAllocationRequest(size_t sz)
        sz = (sz + 7) & ~7;
 
        if (sz > (BOOTSTRAPBYTES-offset)) {
        sz = (sz + 7) & ~7;
 
        if (sz > (BOOTSTRAPBYTES-offset)) {
-               model_print("OUT OF BOOTSTRAP MEMORY\n");
+               model_print("OUT OF BOOTSTRAP MEMORY.  Increase the size of BOOTSTRAPBYTES in mymemory.cc\n");
                exit(EXIT_FAILURE);
        }
 
                exit(EXIT_FAILURE);
        }
 
diff --git a/test/load_in_if_cond.c b/test/load_in_if_cond.c
deleted file mode 100644 (file)
index 9b91ed0..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#include <stdlib.h>
-#include <stdio.h>
-#include <stdbool.h>
-#include "libinterface.h"
-
-struct node {
-       struct node * next;
-};
-
-
-void foo()
-{
-       int i;
-       int x = 0;
-
-       struct node * n = malloc(sizeof(struct node));
-       n->next = 0;
-
-       i = load_32(&x);
-
-       if ((i = load_32(&x))) {
-               printf("%d\n", i);
-       }
-
-       while (load_32(&n->next)) {
-               ;
-       }
-}